Fullscreen Tab Bar
Fullscreen tab bar based on the style of qutebrowser.
Fullscreen Tab Barคืออะไร?
Fullscreen Tab Bar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Josh Medeiros และคุณลักษณะหลักของมันคือ "Fullscreen tab bar based on the style of qutebrowser."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fullscreen Tab Bar
ดาวน์โหลดไฟล์ส่วนขยาย Fullscreen Tab Bar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
An extension to add a tab bar to the top of Chrome based on the style of qutebrowser's.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Fullscreen Tab Bar |
ID | hlackdnjlfblchoenkpcbbophehmeijb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/fullscreen-tab-bar/hlackdnjlfblchoenkpcbbophehmeijb |
คำอธิบาย | Fullscreen tab bar based on the style of qutebrowser. |
ขนาดไฟล์ | 6.28 KB |
จำนวนการติดตั้ง | 387 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2016-02-06 |
วันที่เผยแพร่ | 2016-02-05 |
คะแนน | 2.96/5 รวมทั้งหมด 25 คะแนน |
ผู้พัฒนา | Josh Medeiros |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/JoshMedeiros/Chrome-Fullscreen-Tab-Bar |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fullscreen Tab Bar", "description": "Fullscreen tab bar based on the style of qutebrowser.", "author": "Josh Medeiros", "version": "0.2", "permissions": [ "tabs" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "run_at": "document_start", "css": [ "content.css" ], "js": [ "content.js" ], "matches": [ "*:\/\/*\/*" ] } ], "web_accessible_resources": [ "tabs.html" ] } |