Reject Service Worker

Rejects the ServiceWorker.

O que é Reject Service Worker?

Reject Service Worker é uma extensão do Chrome desenvolvida por https://bugbugnow.net, e sua principal característica é "Rejects the ServiceWorker.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Reject Service Worker

Baixe arquivos de extensão Reject Service Worker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Reject Service Worker Reject Service Worker
ID falajmifjcihbmlokgomiklbfmgmnopd
URL Oficial https://chromewebstore.google.com/detail/reject-service-worker/falajmifjcihbmlokgomiklbfmgmnopd
Descrição Rejects the ServiceWorker.
Tamanho do Arquivo 26.31 KB
Contagem de Instalações 6,000
Versão Atual 0.7.0
Última Atualização 2024-02-08
Data de Publicação 2020-04-26
Classificação 4.25/5 Total de 8 Avaliações
Desenvolvedor https://bugbugnow.net
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.bugbugnow.net/
URL da Página de Ajuda https://github.com/k08045kk/RejectServiceWorker
Idiomas Suportados 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"
    ]
}