Open in new tab

Open links in new tab for a list of specified domains. Useful for sites such as hackernews

Open in new tab क्या है?

Open in new tab Ramkumar K R द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open links in new tab for a list of specified domains. Useful for sites such as hackernews"।

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

screenshot
screenshot

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

crx प्रारूप में Open in new tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

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

                        Have websites which you always open links in new tab?
With this extension, add the domain and all links in the domain will open in a new tab.

Useful for websites such as hackernews where you would ideally like to open links in new tab.

To add a website to always open in a new tab, just visit the website and click on the extension icon.                    

एक्सटेंशन की मूल जानकारी

नाम Open in new tab Open in new tab
ID cplillmhmcegjlhcbedmgmalbgjpmlkh
आधिकारिक URL https://chromewebstore.google.com/detail/open-in-new-tab/cplillmhmcegjlhcbedmgmalbgjpmlkh
विवरण Open links in new tab for a list of specified domains. Useful for sites such as hackernews
फ़ाइल का आकार 101 KB
स्थापना संख्या 8,400
वर्तमान संस्करण 0.0.15
अंतिम अपडेट 2020-05-21
प्रकाशन तिथि 2020-05-21
रेटिंग 3.56/5 कुल 54 रेटिंग्स
डेवलपर Ramkumar K R
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open in new tab",
    "version": "0.0.15",
    "author": "Ramkumar K R",
    "description": "Open links in new tab for a list of specified domains. Useful for sites such as hackernews",
    "permissions": [
        "storage",
        ""
    ],
    "browser_action": {
        "browser_style": false,
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tabify.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "icons": {
        "52": "icon.png"
    }
}