Open Links in New Tab

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

Open Links in New Tabคืออะไร?

Open Links in New Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aran Sandhu และคุณลักษณะหลักของมันคือ "This extension allows you to decide which websites you want to automatically open in a new tab."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Open Links in New Tab

ดาวน์โหลดไฟล์ส่วนขยาย Open Links in New Tab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Open Links in New Tab Open Links in New Tab
ID bbccifaebcaangidpmojlooininapefb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/open-links-in-new-tab/bbccifaebcaangidpmojlooininapefb
คำอธิบาย This extension allows you to decide which websites you want to automatically open in a new tab.
ขนาดไฟล์ 111 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 1.05
อัปเดตครั้งล่าสุด 2020-08-18
วันที่เผยแพร่ 2018-08-07
คะแนน 2.11/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Aran Sandhu
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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",
        "*:\/\/*\/*"
    ]
}