Reject Service Worker

Rejects the ServiceWorker.

Τι είναι το Reject Service Worker;

Το Reject Service Worker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://bugbugnow.net, και η κύρια λειτουργία του είναι "Rejects the ServiceWorker.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Reject Service Worker

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
    ]
}