Open link in same tab, pop-up as tab

Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab.

Open link in same tab, pop-up as tab क्या है?

Open link in same tab, pop-up as tab marek-szczepankiewicz-1122 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab."।

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

screenshot
screenshot
screenshot

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

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

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

                        Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab.
If you hate when you click the link and Chrome opens it in a new or a new background tab, or even in a new window, then this extension is for you.

It forces Chrome to open links in the same tab by default instead of new or background tab, and new tabs instead of pop-up windows.

Version 2.6: - Fixed some cases where popups could not open same tab due to extension upgrade to manifest v3

Version 2.5: - Fix some bug
- Fix some page can't open popup same tab

Version 2.4: - Add new feature:
- View all link open popup.
- Manage all tabs current window.
- Share link of tab on Twitter, LinkedIn and Facebook.                    

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

नाम Open link in same tab, pop-up as tab Open link in same tab, pop-up as tab
ID jmphljmgnagblkombahigniilhnbadca
आधिकारिक URL https://chromewebstore.google.com/detail/open-link-in-same-tab-pop/jmphljmgnagblkombahigniilhnbadca
विवरण Forces Chrome to open new tabs instead of pop-up windows and/or links in the same tab by default instead of new or background tab.
फ़ाइल का आकार 78.41 KB
स्थापना संख्या 102,525
वर्तमान संस्करण 2.8
अंतिम अपडेट 2023-08-04
प्रकाशन तिथि 2017-11-02
रेटिंग 4.41/5 कुल 567 रेटिंग्स
डेवलपर marek-szczepankiewicz-1122
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://sites.google.com/view/extensions-privacy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open link in same tab, pop-up as tab",
    "description": "Forces Chrome to open new tabs instead of pop-up windows and\/or links in the same tab by default instead of new or background tab.",
    "version": "2.8",
    "icons": {
        "16": ".\/assets\/logo.png",
        "48": ".\/assets\/logo.png",
        "128": ".\/assets\/logo.png"
    },
    "action": {
        "default_icon": ".\/assets\/logo.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*",
        "*:\/\/twitter.com\/*",
        "*:\/\/*.linkedin.com\/*"
    ],
    "web_accessible_resources": []
}