Auto Open Links

Auto Open Links allows you to open the first n links from google in new tabs with a shortcut. Examples: ctrl + shift + 1 : will…

Co to jest Auto Open Links?

Auto Open Links to rozszerzenie Chrome opracowane przez vvveleva, a jego główną funkcją jest „Auto Open Links allows you to open the first n links from google in new tabs with a shortcut. Examples: ctrl + shift + 1 : will…”.

Pobierz plik CRX rozszerzenia Auto Open Links

Pobierz pliki rozszerzeń Auto Open Links 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

                        Auto Open Links allows you to open the first n links from google in new tabs with a shortcut.

Examples:

ctrl + shift + 1 : will open the first link on google in a new tab

ctrl + shift + 7 : will open the first 7 links on google in a new tab

If you run into any bugs, please report them at [email protected]. Thanks!                    

Podstawowe informacje o rozszerzeniu

Nazwa Auto Open Links Auto Open Links
ID coiapeoijgdcanenjddgdgcepejabljl
Oficjalny URL https://chrome.google.com/webstore/detail/auto-open-links/coiapeoijgdcanenjddgdgcepejabljl
Opis Auto Open Links allows you to open the first n links from google in new tabs with a shortcut. Examples: ctrl + shift + 1 : will…
Rozmiar pliku 39.57 KB
Liczba instalacji 154
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2015-09-12
Data Publikacji 2015-09-12
Ocena 3.33/5 Łącznie 6 Oceny
Deweloper vvveleva
E-mail [email protected]
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": "Auto Open Links",
    "version": "1.1",
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.google.com\/*"
            ],
            "js": [
                "auto_open_links.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "auto_open_links.js"
    ]
}