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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Same as 'Right Click Opens Link New Tab Correct Order', that disapeared from the chrome store but now is back"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Right Click Opens Link New Tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
}