Open Link in Same Tab

Makes links open in the same tab

什麼是Open Link in Same Tab?

Open Link in Same Tab是由fclancy78開發的Chrome擴展程式,該擴展的主要功能是“Makes links open in the same tab”。

下載Open Link in Same Tab擴展crx文件

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

擴展使用說明

                        Stops links from opening in a new tab. Also adds an "Open link in same tab" option to the right-click menu for links. Click on the icon or press Alt-B to add a website to the blacklist or whitelist. (Note: individual links can be forced to open in the same tab by dragging them to the address bar with the left mouse button held down instead of clicking them. This feature does not require the use of an extension.)                    

擴展基本資訊

名稱 Open Link in Same Tab Open Link in Same Tab
ID kgpefningcojblgciiljmabggbbjiojb
官方網址 https://chrome.google.com/webstore/detail/open-link-in-same-tab/kgpefningcojblgciiljmabggbbjiojb
簡介 Makes links open in the same tab
檔案大小 40.43 KB
安裝次數 10,000
目前版本 1.14
更新時間 2017-08-17
上架時間 2017-08-17
評分 3.67/5 共 39 次評分
開發者 fclancy78
付費類型 free
支援的語言 de,en,fr,nl,no,vi,da,es,it,pl,fi,sv,el,ru,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "eventpage.js"
        ]
    },
    "commands": {
        "_execute_browser_action": {
            "description": "__MSG_blacklist_key__",
            "suggested_key": {
                "default": "Alt+B"
            }
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "sametab.js"
            ],
            "match_about_blank": true,
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "default_locale": "en",
    "description": "__MSG_description__",
    "icons": {
        "128": "icons\/icon128.png",
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extension_name__",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/pa_icon19.png",
            "38": "icons\/pa_icon38.png"
        },
        "default_title": "__MSG_blacklist_key__"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "version": "1.14"
}