New Tab Always

This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link…

Was ist New Tab Always?

New Tab Always ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link…".

New Tab Always-Erweiterungs-CRX-Datei herunterladen

Laden Sie New Tab Always-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

                        This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link will open in a new tab. When disabled (black icon), links will open as they would by default.                    

Grundlegende Informationen zur Erweiterung

Name New Tab Always New Tab Always
ID khcoicdljjkpkhoinjdglndicbibmlch
Offizielle URL https://chromewebstore.google.com/detail/new-tab-always/khcoicdljjkpkhoinjdglndicbibmlch
Beschreibung This extension gives you the option for all links in a tab to open in a new tab. When enabled (shown by a green icon), every link…
Dateigröße 113 KB
Installationsanzahl 65
Aktuelle Version 2.1
Letztes Update 2018-06-09
Veröffentlichungsdatum 2018-06-09
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New Tab Always",
    "version": "2.1",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "128": "icon-128.png",
        "256": "icon-256.png",
        "512": "icon-512.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "128": "icon-128.png",
            "256": "icon-256.png",
            "512": "icon-512.png"
        }
    },
    "permissions": [
        "storage",
        "webNavigation",
        "tabs"
    ],
    "options_page": "options.html"
}