Right Click Opens Link New Tab

Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back

Right Click Opens Link New Tabとは何ですか?

Right Click Opens Link New TabはBill Hedworthによって開発されたChromeの拡張機能で、その主な機能は「Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back」です。

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

screenshot

Right Click Opens Link New Tab拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Opens links with a right click in background (default) or foreground maintaining correct order

All perfectly legit and clean source code just upgraded for manifest v3 available here https://github.com/Bigsy/rightclicklinkopentab                    

拡張機能の基本情報

名前 Right Click Opens Link New Tab Right Click Opens Link New Tab
ID nfcebdpicmeliagdpkofijnaggkghocc
公式URL https://chromewebstore.google.com/detail/right-click-opens-link-ne/nfcebdpicmeliagdpkofijnaggkghocc
説明 Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back
ファイルサイズ 152 KB
インストール数 450
現在のバージョン 0.0.2
最終更新日 2024-02-02
公開日 2024-01-06
評価 5.00/5 合計 5 レビュー
開発者 Bill Hedworth
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Right Click Opens Link New Tab",
    "version": "0.0.2",
    "description": "Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "Bill Hedworth",
    "minimum_chrome_version": "88",
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "config\/settings.html",
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        }
    },
    "options_ui": {
        "page": "config\/settings.html",
        "open_in_tab": true
    },
    "short_name": "Tab Opener"
}