Blank Target

Forces all links on a page to open in a new tab.

Co to jest Blank Target?

Blank Target to rozszerzenie Chrome opracowane przez revjtanton, a jego główną funkcją jest „Forces all links on a page to open in a new tab.”.

Pobierz plik CRX rozszerzenia Blank Target

Pobierz pliki rozszerzeń Blank Target 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

                        Do you get annoyed when links on a page open in the same tab?  Do you ever wish all links open in a new tab?  Well if you answered yes to those questions this extention is for you.  

This extension is very simple.  All it does is append target="_blank" to all links on a page.  That's it.  It's not at all complex, and on some pages the js will overrite this and it won't work.  For the most part it does the job though.  

I've been using this for a while on my own since I prefer all links to open in new tabs.  Now I'm putting it out there for everyone to use.  Enjoy!                    

Podstawowe informacje o rozszerzeniu

Nazwa Blank Target Blank Target
ID ljcanejgocdkgicjieclckdbmajjfppe
Oficjalny URL https://chrome.google.com/webstore/detail/blank-target/ljcanejgocdkgicjieclckdbmajjfppe
Opis Forces all links on a page to open in a new tab.
Rozmiar pliku 3.15 KB
Liczba instalacji 37
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-11-02
Data Publikacji 2014-11-02
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper revjtanton
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blank Target",
    "description": "Forces all links on a page to open in a new tab.",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "blank.js"
            ]
        }
    ]
}