Quick Launch Toolbar
This extension launches links from a toolbar in a new tab.
Что такое Quick Launch Toolbar?
Quick Launch Toolbar - это расширение Chrome, разработанное onowrouzidev, и его основная функция - "This extension launches links from a toolbar in a new tab.".
Снимки экрана расширения
Скачать файл CRX расширения Quick Launch Toolbar
Скачайте файлы расширений Quick Launch Toolbar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Quick Launch Toolbar |
ID | lakamljdifimmlphbhhhbdlonfemfpjf |
Официальный URL | https://chromewebstore.google.com/detail/quick-launch-toolbar/lakamljdifimmlphbhhhbdlonfemfpjf |
Описание | This extension launches links from a toolbar in a new tab. |
Размер файла | 74.48 KB |
Количество установок | 306 |
Текущая Версия | 0.1.1 |
Последнее Обновление | 2016-07-25 |
Дата публикации | 2016-07-25 |
Разработчик | onowrouzidev |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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\/" ] } |