Stop
A simple Stop button
Qu'est-ce que Stop ?
Stop est une extension Chrome développée par MK, et sa fonction principale est "A simple Stop button".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Stop
Téléchargez les fichiers d'extension Stop au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Stop |
ID | kkeehnmfddjhlojogndpeaklfhaokkbn |
URL Officiel | https://chromewebstore.google.com/detail/stop/kkeehnmfddjhlojogndpeaklfhaokkbn |
Description | A simple Stop button |
Taille du Fichier | 5.85 KB |
Nombre d'Installations | 322 |
Version Actuelle | 0.5 |
Dernière Mise à Jour | 2021-01-15 |
Date de Publication | 2016-11-19 |
Évaluation | 3.75/5 Total 4 Évaluations |
Développeur | MK |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |