Stop
A simple Stop button
O que é Stop?
Stop é uma extensão do Chrome desenvolvida por MK, e sua principal característica é "A simple Stop button".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Stop
Baixe arquivos de extensão Stop no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Stop |
ID | kkeehnmfddjhlojogndpeaklfhaokkbn |
URL Oficial | https://chromewebstore.google.com/detail/stop/kkeehnmfddjhlojogndpeaklfhaokkbn |
Descrição | A simple Stop button |
Tamanho do Arquivo | 5.85 KB |
Contagem de Instalações | 322 |
Versão Atual | 0.5 |
Última Atualização | 2021-01-15 |
Data de Publicação | 2016-11-19 |
Classificação | 3.75/5 Total de 4 Avaliações |
Desenvolvedor | MK |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |