Reject Service Worker
Rejects the ServiceWorker.
ما هو Reject Service Worker؟
Reject Service Worker هو إضافة Chrome تم تطويرها بواسطة https://bugbugnow.net، والميزة الرئيسية لها هي "Rejects the ServiceWorker.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Reject Service Worker
قم بتنزيل ملفات الامتداد Reject Service Worker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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/ |
عنوان صفحة المساعدة | 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" ] } |