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…

Qu'est-ce que Auto Open Links ?

Auto Open Links est une extension Chrome développée par vvveleva, et sa fonction principale est "Auto Open Links allows you to open the first n links from google in new tabs with a shortcut. Examples: ctrl + shift + 1 : will…".

Télécharger le fichier CRX de l'extension Auto Open Links

Téléchargez les fichiers d'extension Auto Open Links 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

                        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!                    

Informations de Base sur l'Extension

Nom Auto Open Links Auto Open Links
ID coiapeoijgdcanenjddgdgcepejabljl
URL Officiel https://chrome.google.com/webstore/detail/auto-open-links/coiapeoijgdcanenjddgdgcepejabljl
Description Auto Open Links allows you to open the first n links from google in new tabs with a shortcut. Examples: ctrl + shift + 1 : will…
Taille du Fichier 39.57 KB
Nombre d'Installations 154
Version Actuelle 1.1
Dernière Mise à Jour 2015-09-12
Date de Publication 2015-09-12
Évaluation 3.33/5 Total 6 Évaluations
Développeur vvveleva
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}