Stop
A simple Stop button
Stop क्या है?
Stop MK द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple Stop button"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Stop एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A simple Stop button, for those who want one to the right of the Address Bar. To save RAM, the extension uses an event page rather than a persistent background page. Hopefully it won't lag during heavy disk access. For a Reload button, see: https://chrome.google.com/webstore/detail/reload/fcofhoajikoooeongdbjbgnjpmgehgja *** Changelog 0.5: Updated icons to match Chrome's new Material theme. 0.4: Replaced scarypermission with "activeTab". Consequently, minimum Chrome version bumped to 26. 0.3: Removed "tabs" permission. Turns out it isn't needed to call chrome.tabs.executeScript.
एक्सटेंशन की मूल जानकारी
नाम | Stop |
ID | kkeehnmfddjhlojogndpeaklfhaokkbn |
आधिकारिक URL | https://chromewebstore.google.com/detail/stop/kkeehnmfddjhlojogndpeaklfhaokkbn |
विवरण | A simple Stop button |
फ़ाइल का आकार | 5.85 KB |
स्थापना संख्या | 322 |
वर्तमान संस्करण | 0.5 |
अंतिम अपडेट | 2021-01-15 |
प्रकाशन तिथि | 2016-11-19 |
रेटिंग | 3.75/5 कुल 4 रेटिंग्स |
डेवलपर | MK |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Stop", "description": "A simple Stop button", "version": "0.5", "manifest_version": 2, "minimum_chrome_version": "26", "icons": { "16": "stop_16.png", "24": "stop_24.png", "32": "stop_32.png", "48": "stop_48.png", "128": "stop_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "stop_16.png", "24": "stop_24.png", "32": "stop_32.png" }, "default_title": "Stop" }, "permissions": [ "activeTab" ] } |