Link Control
Manage whether links are opened in the same tab or a new tab
Link Controlとは何ですか?
Link Controlはyikewareによって開発されたChromeの拡張機能で、その主な機能は「Manage whether links are opened in the same tab or a new tab」です。
拡張機能のスクリーンショット
Link Control拡張機能のCRXファイルをダウンロード
Link Control拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        A lightweight extension that puts you in control of how links open.
The extension lets you:
- Always open links in the same tab
- Always open links in a new tab
- Choose the behaviour for specific websites
Useful for stopping the behaviour of sites such as eBay, Etsy, Temu and others that open a new tab every time you click on a link, or it can be used to add that behaviour for other sites.                     拡張機能の基本情報
| 名前 |   |  
| ID | olcpmlhnomiabbndnfplobojnhjljapm | 
| 公式URL | https://chromewebstore.google.com/detail/link-control/olcpmlhnomiabbndnfplobojnhjljapm | 
| 説明 | Manage whether links are opened in the same tab or a new tab | 
| ファイルサイズ | 12.23 KB | 
| インストール数 | 1,015 | 
| 現在のバージョン | 1.1 | 
| 最終更新日 | 2023-12-21 | 
| 公開日 | 2020-08-04 | 
| 評価 | 4.21/5 合計 14 レビュー | 
| 開発者 | yikeware | 
| Eメール | [email protected] | 
| 支払い方法 | free | 
| 対応言語 | en-GB | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link Control",
    "description": "Manage whether links are opened in the same tab or a new tab",
    "version": "1.1",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": "linkcontrol16.png",
        "show_matches": "*:\/\/*\/*"
    },
    "icons": {
        "16": "linkcontrol16.png",
        "48": "linkcontrol48.png",
        "128": "linkcontrol128.png"
    }
}  |  |