google-search-supported-domains

Exposes the list of Google Search’s supported domains as the constant “SUPPORTED_DOMAINS”.

이 스크립트는 직접 설치해서 쓰는 게 아닙니다. 다른 스크립트가 메타 명령 // @require https://update.greasyfork.org/scripts/492742/1361711/google-search-supported-domains.js(으)로 포함하여 쓰는 라이브러리입니다.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name               google-search-supported-domains
// @description        Exposes the list of Google Search’s supported domains as the constant “SUPPORTED_DOMAINS”.
// @author             Jason Kwok
// @namespace          https://jasonhk.dev/
// @version            1.0.0
// @license            MIT
// ==/UserScript==

if (location.href !== "https://www.google.com/supported_domains")
{
    throw new Error("Invalid URL.");
}

const SUPPORTED_DOMAINS = document.body.textContent.trim().split("\n");