Quick Launch Toolbar
This extension launches links from a toolbar in a new tab.
Qu'est-ce que Quick Launch Toolbar ?
Quick Launch Toolbar est une extension Chrome développée par onowrouzidev, et sa fonction principale est "This extension launches links from a toolbar in a new tab.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Quick Launch Toolbar
Téléchargez les fichiers d'extension Quick Launch Toolbar 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
This is a simple but highly customizable quick launch toolbar that stays fixed to the top of web pages to launch new tabs to sites of your choice. Depending on feedback, I may add more customizability and features. Currently, there are some conflicts with some websites. This is mostly related to a site's dynamic CSS or security settings conflicting with non-secure image url's.
Informations de Base sur l'Extension
Nom | Quick Launch Toolbar |
ID | lakamljdifimmlphbhhhbdlonfemfpjf |
URL Officiel | https://chromewebstore.google.com/detail/quick-launch-toolbar/lakamljdifimmlphbhhhbdlonfemfpjf |
Description | This extension launches links from a toolbar in a new tab. |
Taille du Fichier | 74.48 KB |
Nombre d'Installations | 306 |
Version Actuelle | 0.1.1 |
Dernière Mise à Jour | 2016-07-25 |
Date de Publication | 2016-07-25 |
Développeur | onowrouzidev |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quick Launch Toolbar", "description": "This extension launches links from a toolbar in a new tab.", "version": "0.1.1", "browser_action": { "default_icon": "icon.png", "default_popup": "html\/popup.html" }, "icons": { "64": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/jquery-2.2.4.min.js", "js\/content_script.js" ] } ], "permissions": [ "tabs", "storage", "https:\/\/ajax.googleapis.com\/" ] } |