Deactivator
Sease all scripts activity on the page, thus saving CPU, memory, and network.
ما هو Deactivator؟
Deactivator هو إضافة Chrome تم تطويرها بواسطة Yury Ershov، والميزة الرئيسية لها هي "Sease all scripts activity on the page, thus saving CPU, memory, and network.".
تحميل ملف CRX للإضافة Deactivator
قم بتنزيل ملفات الامتداد Deactivator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Super-lightweight page deactivator in one click. Tired of a webpage, sucking your CPU in the background? But there is something useful in it so you'd like to keep it open? Deactivate the web page! Cease all scripts activity on the current page, thus saving CPU, memory, and network. Also, overall page responsiveness improves making if feel faster. Works somewhat similar to 'Tab Suspender' but leaves the whole page accessible, just removing all active components and hidden scripts. In contrast to NoScript-like extensions, works only on demand. To activate, just click on the extension icon. TODO: * Draw a fancy icon * Automatic preventive activity suppressor based on black/white lists
معلومات أساسية عن التمديد
الاسم | Deactivator |
ID | ikpbklpebmmpnjijokjmlapjhbekmbkm |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/deactivator/ikpbklpebmmpnjijokjmlapjhbekmbkm |
الوصف | Sease all scripts activity on the page, thus saving CPU, memory, and network. |
حجم الملف | 10.45 KB |
عدد التثبيتات | 47 |
النسخة الحالية | 1.0 |
آخر تحديث | 2017-05-02 |
تاريخ النشر | 2017-05-01 |
تقييم | 3.00/5 مجموع تقييمات 2 |
المطور | Yury Ershov |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Deactivator", "short_name": "Deactivate page", "version": "1.0", "description": "Sease all scripts activity on the page, thus saving CPU, memory, and network.", "permissions": [ "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_title": "Sease all activity" }, "background": { "scripts": [ "common.js", "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "install_handlers.js" ], "run_at": "document_start" } ] } |