Link in Current Tab

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

Qu'est-ce que Link in Current Tab ?

Link in Current Tab est une extension Chrome développée par SAGAN, et sa fonction principale est "Force all links to be opened in current tab instead of the new one".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Link in Current Tab

Téléchargez les fichiers d'extension Link in Current Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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 页打开.                    

Informations de Base sur l'Extension

Nom Link in Current Tab Link in Current Tab
ID cbkcdebbfbegnmbephalggnchfebihbl
URL Officiel https://chromewebstore.google.com/detail/link-in-current-tab/cbkcdebbfbegnmbephalggnchfebihbl
Description Force all links to be opened in current tab instead of the new one
Taille du Fichier 3.46 KB
Nombre d'Installations 194
Version Actuelle 1.0.11
Dernière Mise à Jour 2023-12-21
Date de Publication 2018-06-18
Évaluation 5.00/5 Total 3 Évaluations
Développeur SAGAN
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/sagan/chrome-extension-link-in-current-tab
Langues Prises en Charge 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
        }
    ]
}