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…

Vad är New Tab Always?

New Tab Always är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "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…".

Ladda ner New Tab Always-förlängningens CRX-fil

Ladda ner New Tab Always-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn New Tab Always New Tab Always
ID khcoicdljjkpkhoinjdglndicbibmlch
Officiell webbadress https://chromewebstore.google.com/detail/new-tab-always/khcoicdljjkpkhoinjdglndicbibmlch
Beskrivning 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…
Filstorlek 113 KB
Antal Installationer 65
Aktuell Version 2.1
Senast Uppdaterad 2018-06-09
Publiceringsdatum 2018-06-09
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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"
}