No Service Worker

Disable service workers on all websites (and whitelist desired domains).

No Service Worker क्या है?

No Service Worker leocompson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Disable service workers on all websites (and whitelist desired domains)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में No Service Worker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        No Service Worker is an extension that enables you to disable service workers on all websites.

This addon has two modes to perform the task. The first method is to unregister service workers whenever they are registered. The second method completely nullifies the service worker, so websites cannot initiate the service worker in the first place. The second method is rather aggressive and not recommended as some websites may encounter errors. There is also an option in the popup toolbar to delete the cache (window.caches). This addon has a whitelist feature to exclude certain domains. You can add a domain via the toolbar popup or from the right-click context menu within the page. If you want to turn off the addon, please open the toolbar popup and then click on the toggle button at the top left corner.

If you have a feature request or found a bug to report, please fill the bug report form on the addon's homepage (https://mybrowseraddon.com/no-service-worker.html).                    

एक्सटेंशन की मूल जानकारी

नाम No Service Worker No Service Worker
ID mbhfklemgegigbfbfmfdmijkcnabgpmf
आधिकारिक URL https://chromewebstore.google.com/detail/no-service-worker/mbhfklemgegigbfbfmfdmijkcnabgpmf
विवरण Disable service workers on all websites (and whitelist desired domains).
फ़ाइल का आकार 58.6 KB
स्थापना संख्या 434
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2023-05-24
प्रकाशन तिथि 2021-07-29
रेटिंग 4.33/5 कुल 3 रेटिंग्स
डेवलपर leocompson
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://mybrowseraddon.com/no-service-worker.html
सहायता पृष्ठ URL https://mybrowseraddon.com/no-service-worker.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.1",
    "manifest_version": 3,
    "name": "No Service Worker",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/no-service-worker.html",
    "description": "Disable service workers on all websites (and whitelist desired domains).",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "No Service Worker",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "world": "MAIN",
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "match_origin_as_fallback": true,
            "js": [
                "data\/content_script\/page_context\/inject.js"
            ]
        },
        {
            "world": "ISOLATED",
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "match_origin_as_fallback": true,
            "js": [
                "data\/content_script\/inject.js"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}