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. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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\/"
]
} | |