New Tab Always

This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link…

什麼是New Tab Always?

New Tab Always是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link…”。

下載New Tab Always擴展crx文件

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

擴展使用說明

                        This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link will open in a new tab. When disabled (black icon), links will open as they would by default.                    

擴展基本資訊

名稱 New Tab Always New Tab Always
ID khcoicdljjkpkhoinjdglndicbibmlch
官方網址 https://chromewebstore.google.com/detail/new-tab-always/khcoicdljjkpkhoinjdglndicbibmlch
簡介 This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link…
檔案大小 113 KB
安裝次數 65
目前版本 2.1
更新時間 2018-06-09
上架時間 2018-06-09
開發者 Unknown
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New Tab Always",
    "version": "2.1",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "128": "icon-128.png",
        "256": "icon-256.png",
        "512": "icon-512.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "128": "icon-128.png",
            "256": "icon-256.png",
            "512": "icon-512.png"
        }
    },
    "permissions": [
        "storage",
        "webNavigation",
        "tabs"
    ],
    "options_page": "options.html"
}