NextTab
A tool that automatically switches to the next tab in a list
ما هو NextTab؟
NextTab هو إضافة Chrome تم تطويرها بواسطة saqfish، والميزة الرئيسية لها هي "A tool that automatically switches to the next tab in a list".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة NextTab
قم بتنزيل ملفات الامتداد NextTab بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
NextTab will let you select a list of open tabs and automatically switch between them on refresh.
معلومات أساسية عن التمديد
الاسم | NextTab |
ID | fnalnialandajhfaidhanakabnfbngij |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/nexttab/fnalnialandajhfaidhanakabnfbngij |
الوصف | A tool that automatically switches to the next tab in a list |
حجم الملف | 1.14 MB |
عدد التثبيتات | 18 |
النسخة الحالية | 0.0.3 |
آخر تحديث | 2020-10-24 |
تاريخ النشر | 2020-10-24 |
المطور | saqfish |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/saqfish/NextTab |
عنوان صفحة المساعدة | https://github.com/saqfish/NextTab/issues |
عنوان صفحة سياسة الخصوصية | http://saqfish.com/mtb_policy.html |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.3", "manifest_version": 2, "name": "NextTab", "short_name": "NextTab", "description": "A tool that automatically switches to the next tab in a list", "background": { "scripts": [ "lib\/js\/browser-polyfill.js", "background.js" ] }, "browser_action": { "default_icon": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "default_title": "NextTab", "default_popup": "popup.html" }, "permissions": [ "tabs", "downloads", "storage" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "options_ui": { "page": ".\/options.html", "open_in_tab": true } } |