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.

Was ist Open link in same tab, pop-up as tab?

Open link in same tab, pop-up as tab ist eine Chrome-Erweiterung, die von marek-szczepankiewicz-1122 entwickelt wurde, und ihr Hauptmerkmal ist "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.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Open link in same tab, pop-up as tab-Erweiterungs-CRX-Datei herunterladen

Laden Sie Open link in same tab, pop-up as tab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Open link in same tab, pop-up as tab Open link in same tab, pop-up as tab
ID jmphljmgnagblkombahigniilhnbadca
Offizielle URL https://chromewebstore.google.com/detail/open-link-in-same-tab-pop/jmphljmgnagblkombahigniilhnbadca
Beschreibung 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.
Dateigröße 78.41 KB
Installationsanzahl 102,525
Aktuelle Version 2.8
Letztes Update 2023-08-04
Veröffentlichungsdatum 2017-11-02
Bewertung 4.41/5 Insgesamt 567 Bewertungen
Entwickler marek-szczepankiewicz-1122
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://sites.google.com/view/extensions-privacy
Unterstützte Sprachen 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": []
}