Link in Current Tab

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

Co to jest Link in Current Tab?

Link in Current Tab to rozszerzenie Chrome opracowane przez SAGAN, a jego główną funkcją jest „Force all links to be opened in current tab instead of the new one”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Link in Current Tab

Pobierz pliki rozszerzeń Link in Current Tab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Link in Current Tab Link in Current Tab
ID cbkcdebbfbegnmbephalggnchfebihbl
Oficjalny URL https://chromewebstore.google.com/detail/link-in-current-tab/cbkcdebbfbegnmbephalggnchfebihbl
Opis Force all links to be opened in current tab instead of the new one
Rozmiar pliku 3.46 KB
Liczba instalacji 194
Aktualna Wersja 1.0.11
Ostatnia Aktualizacja 2023-12-21
Data Publikacji 2018-06-18
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper SAGAN
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/sagan/chrome-extension-link-in-current-tab
Obsługiwane Języki 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
        }
    ]
}