Reject Service Worker

Rejects the ServiceWorker.

Reject Service Worker là gì?

Reject Service Worker là một tiện ích mở rộng Chrome được phát triển bởi https://bugbugnow.net, và tính năng chính của nó là "Rejects the ServiceWorker.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Reject Service Worker

Tải xuống các tệp mở rộng Reject Service Worker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Reject Service Worker Reject Service Worker
ID falajmifjcihbmlokgomiklbfmgmnopd
URL Chính Thức https://chromewebstore.google.com/detail/reject-service-worker/falajmifjcihbmlokgomiklbfmgmnopd
Mô tả Rejects the ServiceWorker.
Kích Thước Tệp 26.31 KB
Số Lần Cài Đặt 6,000
Phiên Bản Hiện Tại 0.7.0
Cập Nhật Lần Cuối 2024-02-08
Ngày Phát Hành 2020-04-26
Đánh Giá 4.25/5 Tổng số 8 Đánh Giá
Nhà Phát Triển https://bugbugnow.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.bugbugnow.net/
URL Trang Trợ Giúp https://github.com/k08045kk/RejectServiceWorker
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}