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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |