Quick Launch Toolbar
This extension launches links from a toolbar in a new tab.
Cos'è Quick Launch Toolbar?
Quick Launch Toolbar è un'estensione di Chrome sviluppata da onowrouzidev, e la sua funzione principale è "This extension launches links from a toolbar in a new tab.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Quick Launch Toolbar
Scarica i file di estensione Quick Launch Toolbar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | lakamljdifimmlphbhhhbdlonfemfpjf |
| URL Ufficiale | https://chromewebstore.google.com/detail/quick-launch-toolbar/lakamljdifimmlphbhhhbdlonfemfpjf |
| Descrizione | This extension launches links from a toolbar in a new tab. |
| Dimensione del File | 74.48 KB |
| Conteggio Installazioni | 306 |
| Versione Corrente | 0.1.1 |
| Ultimo Aggiornamento | 2016-07-25 |
| Data di Pubblicazione | 2016-07-25 |
| Sviluppatore | onowrouzidev |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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\/"
]
} | |