Quick Launch Toolbar
This extension launches links from a toolbar in a new tab.
Was ist Quick Launch Toolbar?
Quick Launch Toolbar ist eine Chrome-Erweiterung, die von onowrouzidev entwickelt wurde, und ihr Hauptmerkmal ist "This extension launches links from a toolbar in a new tab.".
Erweiterungsscreenshots
Quick Launch Toolbar-Erweiterungs-CRX-Datei herunterladen
Laden Sie Quick Launch Toolbar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lakamljdifimmlphbhhhbdlonfemfpjf |
| Offizielle URL | https://chromewebstore.google.com/detail/quick-launch-toolbar/lakamljdifimmlphbhhhbdlonfemfpjf |
| Beschreibung | This extension launches links from a toolbar in a new tab. |
| Dateigröße | 74.48 KB |
| Installationsanzahl | 306 |
| Aktuelle Version | 0.1.1 |
| Letztes Update | 2016-07-25 |
| Veröffentlichungsdatum | 2016-07-25 |
| Entwickler | onowrouzidev |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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\/"
]
} | |