Custom Shortcut Button
Allows you to set a custom shortcut button next to your address bar.
O que é Custom Shortcut Button?
Custom Shortcut Button é uma extensão do Chrome desenvolvida por xylophono, e sua principal característica é "Allows you to set a custom shortcut button next to your address bar.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Custom Shortcut Button
Baixe arquivos de extensão Custom Shortcut Button 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
Custom Shortcut Button puts a new button next to your address bar, which you can then use to easily and repeatedly open a custom URL in a new tab. To set the URL please right click on the icon and select "Options". Changelog: V1.0 - Jan 31st 2017 - Initial release. For any issues please contact [email protected] :)
Informações Básicas da Extensão
Nome | Custom Shortcut Button |
ID | kcmejemnmnheajipjgilcefofjchdafg |
URL Oficial | https://chromewebstore.google.com/detail/custom-shortcut-button/kcmejemnmnheajipjgilcefofjchdafg |
Descrição | Allows you to set a custom shortcut button next to your address bar. |
Tamanho do Arquivo | 48.96 KB |
Contagem de Instalações | 713 |
Versão Atual | 1.0 |
Última Atualização | 2017-01-31 |
Data de Publicação | 2017-01-31 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | xylophono |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom Shortcut Button", "short_name": "Custom Shortcut", "description": "Allows you to set a custom shortcut button next to your address bar.", "version": "1.0", "version_name": "1.0", "minimum_chrome_version": "38", "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png", "512": "assets\/icon.png" }, "browser_action": { "default_icon": "assets\/icon.png", "default_title": "" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage" ], "options_ui": { "page": "index.html" } } |