Open link in same tab, pop-up as tab

Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab.

什麼是Open link in same tab, pop-up as tab?

Open link in same tab, pop-up as tab是由marek-szczepankiewicz-1122開發的Chrome擴展程式,該擴展的主要功能是“Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab.”。

擴展截圖

screenshot
screenshot
screenshot

下載Open link in same tab, pop-up as tab擴展crx文件

下載Open link in same tab, pop-up as tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab.
If you hate when you click the link and Chrome opens it in a new or a new background tab, or even in a new window, then this extension is for you.

It forces Chrome to open links in the same tab by default instead of new or background tab, and new tabs instead of pop-up windows.

Version 2.6: - Fixed some cases where popups could not open same tab due to extension upgrade to manifest v3

Version 2.5: - Fix some bug
- Fix some page can't open popup same tab

Version 2.4: - Add new feature:
- View all link open popup.
- Manage all tabs current window.
- Share link of tab on Twitter, LinkedIn and Facebook.                    

擴展基本資訊

名稱 Open link in same tab, pop-up as tab Open link in same tab, pop-up as tab
ID jmphljmgnagblkombahigniilhnbadca
官方網址 https://chromewebstore.google.com/detail/open-link-in-same-tab-pop/jmphljmgnagblkombahigniilhnbadca
簡介 Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab.
檔案大小 78.41 KB
安裝次數 102,525
目前版本 2.8
更新時間 2023-08-04
上架時間 2017-11-02
評分 4.41/5 共 567 次評分
開發者 marek-szczepankiewicz-1122
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://sites.google.com/view/extensions-privacy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open link in same tab, pop-up as tab",
    "description": "Forces Chrome to open new tabs instead of pop-up windows and\/or links in the same tab by default instead of new or background tab.",
    "version": "2.8",
    "icons": {
        "16": ".\/assets\/logo.png",
        "48": ".\/assets\/logo.png",
        "128": ".\/assets\/logo.png"
    },
    "action": {
        "default_icon": ".\/assets\/logo.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*",
        "*:\/\/twitter.com\/*",
        "*:\/\/*.linkedin.com\/*"
    ],
    "web_accessible_resources": []
}