Open Links in New Tab

This extension allows you to decide which websites you want to automatically open in a new tab.

Apa itu Open Links in New Tab?

Open Links in New Tab adalah ekstensi Chrome yang dikembangkan oleh Aran Sandhu, dan fitur utamanya adalah "This extension allows you to decide which websites you want to automatically open in a new tab.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Open Links in New Tab

Unduh file ekstensi Open Links in New Tab dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        This extension will allow you to create a list of websites so that whenever you click a link on one of those websites, the link will automatically open in a new tab. Perfect for websites like Google, Reddit, and YouTube.                    

Informasi Dasar Ekstensi

Nama Open Links in New Tab Open Links in New Tab
ID bbccifaebcaangidpmojlooininapefb
URL Resmi https://chrome.google.com/webstore/detail/open-links-in-new-tab/bbccifaebcaangidpmojlooininapefb
Deskripsi This extension allows you to decide which websites you want to automatically open in a new tab.
Ukuran File 111 KB
Jumlah Instalasi 1,000
Versi Saat Ini 1.05
Terakhir Diperbarui 2020-08-18
Tanggal Publikasi 2018-08-07
Penilaian 2.11/5 Total 9 Penilaian
Pengembang Aran Sandhu
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open Links in New Tab",
    "description": "This extension allows you to decide which websites you want to automatically open in a new tab.",
    "version": "1.05",
    "author": "Aran Sandhu",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "jquery-3.3.1.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "jquery-3.3.1.js",
                "util.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "*:\/\/*\/*"
    ]
}