New Tab Rotate

Alternate between your multiple new tab extensions

什麼是New Tab Rotate?

New Tab Rotate是由newtabrotate開發的Chrome擴展程式,該擴展的主要功能是“Alternate between your multiple new tab extensions”。

擴展截圖

下載New Tab Rotate擴展crx文件

下載New Tab Rotate擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Have more than one new tab extension that you like?
Why not both!? Why not 100!?
Automatically rotate between your installed new tab extensions every time you open a new tab. 
Or if you want to launch a specific one, just choose it from the New Tab Rotate popup.
Don't settle for just one, you deserve to use them all!                    

擴展基本資訊

名稱 New Tab Rotate New Tab Rotate
ID ahgcbolioopacfcnofmbpfebmggfbhia
官方網址 https://chrome.google.com/webstore/detail/new-tab-rotate/ahgcbolioopacfcnofmbpfebmggfbhia
簡介 Alternate between your multiple new tab extensions
檔案大小 130 KB
安裝次數 281
目前版本 1.1.4
更新時間 2021-02-14
上架時間 2019-12-30
評分 5.00/5 共 1 次評分
開發者 newtabrotate
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab Rotate",
    "version": "1.1.4",
    "manifest_version": 2,
    "description": "Alternate between your multiple new tab extensions",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "browser action",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "activeTab",
        "management",
        "tabs",
        "declarativeContent",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery\/jquery.js"
            ]
        }
    ]
}