Tabloc
Open new tabs when you click links.
Tablocคืออะไร?
Tabloc เป็นส่วนขยายของ Chrome ที่พัฒนาโดย asukaze และคุณลักษณะหลักของมันคือ "Open new tabs when you click links."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tabloc
ดาวน์โหลดไฟล์ส่วนขยาย Tabloc ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds "Lock Tab" icon in the tool bar. When you click links in the locked tab, current page is preserved and new tab opens. Does not works in extensions gallery and framed pages. Tabloc for Firefox: https://addons.mozilla.org/firefox/12536/ Ver.0.5 (2022/07/18) - updated to manifest_version 3. - uses Storage API to store preferences instead of LocalStorage. - simplified the default icons. - split the "Auto-Lock URL" for "background tabs", "foreground tabs", and "excluded URLs". - automatically adds URLs to the auto-lock URLs when the tab is locked. - auto lock URLs are now considered as partial match instead of exact match. - added emoji to the locked tab title. - merged foreground icon and background icon to one "enabled" icon. Ver.0.4 (2015/03/22) - support custom icons. Ver.0.3 (2012/10/08) - updated to manifest_version 2. Ver.0.1.3 (2010/03/04) - add "auto-link" feature. Ver.0.1.2 (2010/02/02) - update description. Ver.0.1.1 (2010/01/31) - support some options.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Tabloc |
ID | fkgobafgpenbfnfeigkdpdilnpfabbpc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tabloc/fkgobafgpenbfnfeigkdpdilnpfabbpc |
คำอธิบาย | Open new tabs when you click links. |
ขนาดไฟล์ | 11.07 KB |
จำนวนการติดตั้ง | 4,082 |
เวอร์ชันปัจจุบัน | 0.5 |
อัปเดตครั้งล่าสุด | 2022-07-19 |
วันที่เผยแพร่ | 2015-03-21 |
คะแนน | 3.70/5 รวมทั้งหมด 27 คะแนน |
ผู้พัฒนา | asukaze |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.asukaze.net/soft/ch_tabloc/ |
ภาษาที่รองรับ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tabloc", "version": "0.5", "manifest_version": 3, "description": "__MSG_description__", "default_locale": "en", "icons": { "16": "tabloc.png", "48": "tabloc_48.png" }, "action": { "default_icon": "tabloc.png", "default_title": "__MSG_action_title__" }, "background": { "service_worker": "tabloc_bg.js", "type": "module" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "tabloc.js" ], "all_frames": true } ], "permissions": [ "tabs", "storage" ] } |