Reject Service Worker

Rejects the ServiceWorker.

Qu'est-ce que Reject Service Worker ?

Reject Service Worker est une extension Chrome développée par https://bugbugnow.net, et sa fonction principale est "Rejects the ServiceWorker.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Reject Service Worker

Téléchargez les fichiers d'extension Reject Service Worker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Reject Service Worker Reject Service Worker
ID falajmifjcihbmlokgomiklbfmgmnopd
URL Officiel https://chromewebstore.google.com/detail/reject-service-worker/falajmifjcihbmlokgomiklbfmgmnopd
Description Rejects the ServiceWorker.
Taille du Fichier 26.31 KB
Nombre d'Installations 6,000
Version Actuelle 0.7.0
Dernière Mise à Jour 2024-02-08
Date de Publication 2020-04-26
Évaluation 4.25/5 Total 8 Évaluations
Développeur https://bugbugnow.net
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.bugbugnow.net/
URL de la Page d'Aide https://github.com/k08045kk/RejectServiceWorker
Langues Prises en Charge 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"
    ]
}