Quick Launch Toolbar
This extension launches links from a toolbar in a new tab.
Wat is Quick Launch Toolbar?
Quick Launch Toolbar is een Chrome-extensie ontwikkeld door onowrouzidev, en de belangrijkste functie is "This extension launches links from a toolbar in a new tab.".
Extensie Screenshots
Download het CRX-bestand van de extensie Quick Launch Toolbar
Download Quick Launch Toolbar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Quick Launch Toolbar |
ID | lakamljdifimmlphbhhhbdlonfemfpjf |
Officiële URL | https://chromewebstore.google.com/detail/quick-launch-toolbar/lakamljdifimmlphbhhhbdlonfemfpjf |
Beschrijving | This extension launches links from a toolbar in a new tab. |
Bestandsgrootte | 74.48 KB |
Aantal Installaties | 306 |
Huidige Versie | 0.1.1 |
Laatst Bijgewerkt | 2016-07-25 |
Publicatiedatum | 2016-07-25 |
Ontwikkelaar | onowrouzidev |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/" ] } |