Reject Service Worker

Rejects the ServiceWorker.

Reject Service Workerとは何ですか?

Reject Service Workerはhttps://bugbugnow.netによって開発されたChromeの拡張機能で、その主な機能は「Rejects the ServiceWorker.」です。

拡張機能のスクリーンショット

screenshot

Reject Service Worker拡張機能のCRXファイルをダウンロード

Reject Service Worker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension will deny automatic registration of service workers. Service workers who have already registered before the extension was introduced will be unregistered when they visit your site for the first time after the extension was introduced. If you want to allow service workers to register on some of your sites, you can add the domain name to the whitelist so that the service workers will not be denied registration.                    

拡張機能の基本情報

名前 Reject Service Worker Reject Service Worker
ID falajmifjcihbmlokgomiklbfmgmnopd
公式URL https://chromewebstore.google.com/detail/reject-service-worker/falajmifjcihbmlokgomiklbfmgmnopd
説明 Rejects the ServiceWorker.
ファイルサイズ 26.31 KB
インストール数 6,000
現在のバージョン 0.7.0
最終更新日 2024-02-08
公開日 2020-04-26
評価 4.25/5 合計 8 レビュー
開発者 https://bugbugnow.net
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.bugbugnow.net/
ヘルプページのURL https://github.com/k08045kk/RejectServiceWorker
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "0.7.0",
    "default_locale": "en",
    "author": "toshi",
    "homepage_url": "https:\/\/www.bugbugnow.net\/",
    "minimum_chrome_version": "88.0",
    "action": {
        "default_title": "__MSG_extensionName__",
        "default_popup": "\/popup\/popup.html"
    },
    "options_ui": {
        "page": "\/options\/options.html"
    },
    "content_scripts": [
        {
            "world": "ISOLATED",
            "all_frames": true,
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "\/common.js",
                "\/content-script\/chrome.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "resources": [
                "\/content-script\/*.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}