SameTab - keep only one copy of the tab open
SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…
ما هو SameTab - keep only one copy of the tab open؟
SameTab - keep only one copy of the tab open هو إضافة Chrome تم تطويرها بواسطة valentin.alekseev، والميزة الرئيسية لها هي "SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…".
تحميل ملف CRX للإضافة SameTab - keep only one copy of the tab open
قم بتنزيل ملفات الامتداد SameTab - keep only one copy of the tab open بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it will close the duplicate freeing up some memory and tab space.
معلومات أساسية عن التمديد
الاسم | SameTab - keep only one copy of the tab open |
ID | egndhnnhgedkbnkdfjpakgpclhbjcjfb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb |
الوصف | SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it… |
حجم الملف | 8.9 KB |
عدد التثبيتات | 12 |
النسخة الحالية | 1.1 |
آخر تحديث | 2016-02-16 |
تاريخ النشر | 2016-02-16 |
تقييم | 3.50/5 مجموع تقييمات 2 |
المطور | valentin.alekseev |
نوع الدفع | free |
عنوان صفحة المساعدة | https://github.com/valentinalexeev/chrome-sametab |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SameTab - keep only one copy of the tab open", "description": "", "version": "1.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "index.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "tabs", "activeTab", "notifications", "storage" ] } |