NextTab
A tool that automatically switches to the next tab in a list
什麼是NextTab?
NextTab是由saqfish開發的Chrome擴展程式,該擴展的主要功能是“A tool that automatically switches to the next tab in a list”。
擴展截圖
下載NextTab擴展crx文件
下載NextTab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
NextTab will let you select a list of open tabs and automatically switch between them on refresh.
擴展基本資訊
名稱 | NextTab |
ID | fnalnialandajhfaidhanakabnfbngij |
官方網址 | 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 |
說明頁面URL | https://github.com/saqfish/NextTab/issues |
隱私政策頁面URL | 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 } } |