Show Tab List
Show all sites in the current page
ما هو Show Tab List؟
Show Tab List هو إضافة Chrome تم تطويرها بواسطة pinibalilihamelech، والميزة الرئيسية لها هي "Show all sites in the current page".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Show Tab List
قم بتنزيل ملفات الامتداد Show Tab List بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Press Ctrl+Shift+Y to view a list of the sites used in the current page.
معلومات أساسية عن التمديد
الاسم | Show Tab List |
ID | pjpbfdjmmlnelgbkffopkgpggeeaildc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/show-tab-list/pjpbfdjmmlnelgbkffopkgpggeeaildc |
الوصف | Show all sites in the current page |
حجم الملف | 8.67 KB |
عدد التثبيتات | 14,454 |
النسخة الحالية | 0.1 |
آخر تحديث | 2015-03-13 |
تاريخ النشر | 2015-03-13 |
تقييم | 2.11/5 مجموع تقييمات 9 |
المطور | pinibalilihamelech |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show Tab List", "description": "Show all sites in the current page", "version": "0.1", "manifest_version": 2, "icons": { "16": "resources\/images\/icon-16.png", "48": "resources\/images\/icon-48.png", "128": "resources\/images\/icon-128.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ], "background": { "scripts": [ "resources\/js\/myBackground.js" ] }, "commands": { "toggle-tab-list": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Toggle tab list" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "resources\/js\/page.js" ] } ] } |