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…

Hvad er Auto Open Links?

Auto Open Links er en Chrome-udvidelse udviklet af vvveleva, og dens hovedfunktion er "Auto Open Links allows you to open the first n links from google in new tabs with a shortcut. Examples: ctrl + shift + 1 : will…".

Download Auto Open Links-udvidelses-CRX-fil

Download Auto Open Links-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Auto Open Links Auto Open Links
ID coiapeoijgdcanenjddgdgcepejabljl
Officiel URL https://chrome.google.com/webstore/detail/auto-open-links/coiapeoijgdcanenjddgdgcepejabljl
Beskrivelse Auto Open Links allows you to open the first n links from google in new tabs with a shortcut. Examples: ctrl + shift + 1 : will…
Filstørrelse 39.57 KB
Antal Installationer 154
Nuværende Version 1.1
Senest Opdateret 2015-09-12
Udgivelsesdato 2015-09-12
Bedømmelse 3.33/5 Samlet 6 Bedømmelser
Udvikler vvveleva
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}