Tabs Counter
Count the number of tabs that are open
ما هو Tabs Counter؟
Tabs Counter هو إضافة Chrome تم تطويرها بواسطة Bill Miller، والميزة الرئيسية لها هي "Count the number of tabs that are open".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tabs Counter
قم بتنزيل ملفات الامتداد Tabs Counter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
If your curious as to how many browser tabs are open, just select "How many tabs?" from the context menu and all will be revealed
معلومات أساسية عن التمديد
الاسم | |
ID | kgdaeidiojbdgmnjnpmklilaodjlkbjp |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/tabs-counter/kgdaeidiojbdgmnjnpmklilaodjlkbjp |
الوصف | Count the number of tabs that are open |
حجم الملف | 43.49 KB |
عدد التثبيتات | 7,000 |
النسخة الحالية | 0.1 |
آخر تحديث | 2014-07-09 |
تاريخ النشر | 2014-07-09 |
تقييم | 1.50/5 مجموع تقييمات 8 |
المطور | Bill Miller |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tabs Counter", "description": "Count the number of tabs that are open", "version": "0.1", "manifest_version": 2, "permissions": [ "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-1.11.0.min.js", "jquery.bpopup.min.js", "script.js" ] } ] } |