Link in Current Tab

Force all links to be opened in current tab instead of the new one

Was ist Link in Current Tab?

Link in Current Tab ist eine Chrome-Erweiterung, die von SAGAN entwickelt wurde, und ihr Hauptmerkmal ist "Force all links to be opened in current tab instead of the new one".

Erweiterungsscreenshots

screenshot
screenshot

Link in Current Tab-Erweiterungs-CRX-Datei herunterladen

Laden Sie Link in Current 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

                        This extension forces all links to be opened in the current tab. It does it in a way that should work in ALL websites, even if the sites that load contents dynamically via AJAX.

Note You can still open a link in the new tab at any time, by clicking a link when holding the "Ctrl" key, or using the middle mouse button to open a link.

无视页面里 a 链接的 target="_blank" 属性, 强制所有链接在当前 tab 页打开.                    

Grundlegende Informationen zur Erweiterung

Name Link in Current Tab Link in Current Tab
ID cbkcdebbfbegnmbephalggnchfebihbl
Offizielle URL https://chromewebstore.google.com/detail/link-in-current-tab/cbkcdebbfbegnmbephalggnchfebihbl
Beschreibung Force all links to be opened in current tab instead of the new one
Dateigröße 3.46 KB
Installationsanzahl 194
Aktuelle Version 1.0.11
Letztes Update 2023-12-21
Veröffentlichungsdatum 2018-06-18
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler SAGAN
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/sagan/chrome-extension-link-in-current-tab
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link in Current Tab",
    "description": "Force all links to be opened in current tab instead of the new one",
    "version": "1.0.11",
    "author": "Jacques De SAGAN",
    "manifest_version": 2,
    "permissions": [],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}