Custom Shortcut Button
Allows you to set a custom shortcut button next to your address bar.
Qu'est-ce que Custom Shortcut Button ?
Custom Shortcut Button est une extension Chrome développée par xylophono, et sa fonction principale est "Allows you to set a custom shortcut button next to your address bar.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Custom Shortcut Button
Téléchargez les fichiers d'extension Custom Shortcut Button 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
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] :)
Informations de Base sur l'Extension
Nom | Custom Shortcut Button |
ID | kcmejemnmnheajipjgilcefofjchdafg |
URL Officiel | https://chromewebstore.google.com/detail/custom-shortcut-button/kcmejemnmnheajipjgilcefofjchdafg |
Description | Allows you to set a custom shortcut button next to your address bar. |
Taille du Fichier | 48.96 KB |
Nombre d'Installations | 713 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2017-01-31 |
Date de Publication | 2017-01-31 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | xylophono |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |