Reject Service Worker

Rejects the ServiceWorker.

Wat is Reject Service Worker?

Reject Service Worker is een Chrome-extensie ontwikkeld door https://bugbugnow.net, en de belangrijkste functie is "Rejects the ServiceWorker.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Reject Service Worker

Download Reject Service Worker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Reject Service Worker Reject Service Worker
ID falajmifjcihbmlokgomiklbfmgmnopd
Officiële URL https://chromewebstore.google.com/detail/reject-service-worker/falajmifjcihbmlokgomiklbfmgmnopd
Beschrijving Rejects the ServiceWorker.
Bestandsgrootte 26.31 KB
Aantal Installaties 6,000
Huidige Versie 0.7.0
Laatst Bijgewerkt 2024-02-08
Publicatiedatum 2020-04-26
Beoordeling 4.25/5 Totaal 8 Beoordelingen
Ontwikkelaar https://bugbugnow.net
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.bugbugnow.net/
Help Pagina-URL https://github.com/k08045kk/RejectServiceWorker
Ondersteunde Talen 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"
    ]
}