Quick Launch Toolbar
This extension launches links from a toolbar in a new tab.
什麼是Quick Launch Toolbar?
Quick Launch Toolbar是由onowrouzidev開發的Chrome擴展程式,該擴展的主要功能是“This extension launches links from a toolbar in a new tab.”。
擴展截圖
下載Quick Launch Toolbar擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | lakamljdifimmlphbhhhbdlonfemfpjf |
| 官方網址 | 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\/"
]
} | |