Quick Launch Toolbar
This extension launches links from a toolbar in a new tab.
Co to jest Quick Launch Toolbar?
Quick Launch Toolbar to rozszerzenie Chrome opracowane przez onowrouzidev, a jego główną funkcją jest „This extension launches links from a toolbar in a new tab.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Quick Launch Toolbar
Pobierz pliki rozszerzeń Quick Launch Toolbar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | lakamljdifimmlphbhhhbdlonfemfpjf |
| Oficjalny URL | https://chromewebstore.google.com/detail/quick-launch-toolbar/lakamljdifimmlphbhhhbdlonfemfpjf |
| Opis | This extension launches links from a toolbar in a new tab. |
| Rozmiar pliku | 74.48 KB |
| Liczba instalacji | 306 |
| Aktualna Wersja | 0.1.1 |
| Ostatnia Aktualizacja | 2016-07-25 |
| Data Publikacji | 2016-07-25 |
| Deweloper | onowrouzidev |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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\/"
]
} | |