Fullscreen Tab Bar
Fullscreen tab bar based on the style of qutebrowser.
什麼是Fullscreen Tab Bar?
Fullscreen Tab Bar是由Josh Medeiros開發的Chrome擴展程式,該擴展的主要功能是“Fullscreen tab bar based on the style of qutebrowser.”。
擴展截圖
下載Fullscreen Tab Bar擴展crx文件
下載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 |
官方網址 | 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" ] } |