Link in Current Tab

Force all links to be opened in current tab instead of the new one

Link in Current Tabとは何ですか?

Link in Current TabはSAGANによって開発されたChromeの拡張機能で、その主な機能は「Force all links to be opened in current tab instead of the new one」です。

拡張機能のスクリーンショット

screenshot
screenshot

Link in Current Tab拡張機能のCRXファイルをダウンロード

Link in Current Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension forces all links to be opened in the current tab. It does it in a way that should work in ALL websites, even if the sites that load contents dynamically via AJAX.

Note You can still open a link in the new tab at any time, by clicking a link when holding the "Ctrl" key, or using the middle mouse button to open a link.

无视页面里 a 链接的 target="_blank" 属性, 强制所有链接在当前 tab 页打开.                    

拡張機能の基本情報

名前 Link in Current Tab Link in Current Tab
ID cbkcdebbfbegnmbephalggnchfebihbl
公式URL https://chromewebstore.google.com/detail/link-in-current-tab/cbkcdebbfbegnmbephalggnchfebihbl
説明 Force all links to be opened in current tab instead of the new one
ファイルサイズ 3.46 KB
インストール数 194
現在のバージョン 1.0.11
最終更新日 2023-12-21
公開日 2018-06-18
評価 5.00/5 合計 3 レビュー
開発者 SAGAN
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/sagan/chrome-extension-link-in-current-tab
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link in Current Tab",
    "description": "Force all links to be opened in current tab instead of the new one",
    "version": "1.0.11",
    "author": "Jacques De SAGAN",
    "manifest_version": 2,
    "permissions": [],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}