MultiLinks Shortcut

This extension speed up opening several tabs you daily use.

Was ist MultiLinks Shortcut?

MultiLinks Shortcut ist eine Chrome-Erweiterung, die von jrochelly entwickelt wurde, und ihr Hauptmerkmal ist "This extension speed up opening several tabs you daily use.".

Erweiterungsscreenshots

screenshot

MultiLinks Shortcut-Erweiterungs-CRX-Datei herunterladen

Laden Sie MultiLinks Shortcut-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Multilink is a simple extension that lets you open several web pages at once.

Just save the links you want on options page, than just click on multilink icon and ta-da.
You can add as many pages as you want.

Visit https://github.com/jrochelly/multilinks for troubleshooting and how to get involved.                    

Grundlegende Informationen zur Erweiterung

Name MultiLinks Shortcut MultiLinks Shortcut
ID ddfoagnhebpbidjkganhgninciiecgon
Offizielle URL https://chromewebstore.google.com/detail/multilinks-shortcut/ddfoagnhebpbidjkganhgninciiecgon
Beschreibung This extension speed up opening several tabs you daily use.
Dateigröße 49.66 KB
Installationsanzahl 1,193
Aktuelle Version 0.3.2
Letztes Update 2015-07-02
Veröffentlichungsdatum 2015-07-01
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler jrochelly
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MultiLinks Shortcut",
    "description": "This extension speed up opening several tabs you daily use.",
    "version": "0.3.2",
    "options_page": "options.html",
    "commands": {
        "toggle-feature": {
            "description": "Open links",
            "suggested_key": {
                "default": "Alt+Shift+L",
                "mac": "Alt+Shift+L"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/jquery.com\/*"
            ],
            "js": [
                "js\/jquery.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "imgs\/icon16.png",
        "48": "imgs\/icon48.png",
        "128": "imgs\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/ajax.googleapis.com\/"
    ]
}