Deactivator
Sease all scripts activity on the page, thus saving CPU, memory, and network.
Deactivator क्या है?
Deactivator Yury Ershov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sease all scripts activity on the page, thus saving CPU, memory, and network."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Deactivator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
ईमेल | yuriy.ershov@gmail.com |
भुगतान के प्रकार | 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" } ] } |