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…

Qu'est-ce que New Tab Always ?

New Tab Always est une extension Chrome développée par Unknown, et sa fonction principale est "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…".

Télécharger le fichier CRX de l'extension New Tab Always

Téléchargez les fichiers d'extension New Tab Always 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

                        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.                    

Informations de Base sur l'Extension

Nom New Tab Always New Tab Always
ID khcoicdljjkpkhoinjdglndicbibmlch
URL Officiel https://chromewebstore.google.com/detail/new-tab-always/khcoicdljjkpkhoinjdglndicbibmlch
Description 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…
Taille du Fichier 113 KB
Nombre d'Installations 65
Version Actuelle 2.1
Dernière Mise à Jour 2018-06-09
Date de Publication 2018-06-09
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
}