Open in new tab

Open links in new tab for a list of specified domains. Useful for sites such as hackernews

Open in new tabคืออะไร?

Open in new tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ramkumar K R และคุณลักษณะหลักของมันคือ "Open links in new tab for a list of specified domains. Useful for sites such as hackernews"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Open in new tab

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

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

                        Have websites which you always open links in new tab?
With this extension, add the domain and all links in the domain will open in a new tab.

Useful for websites such as hackernews where you would ideally like to open links in new tab.

To add a website to always open in a new tab, just visit the website and click on the extension icon.                    

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

ชื่อ Open in new tab Open in new tab
ID cplillmhmcegjlhcbedmgmalbgjpmlkh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/open-in-new-tab/cplillmhmcegjlhcbedmgmalbgjpmlkh
คำอธิบาย Open links in new tab for a list of specified domains. Useful for sites such as hackernews
ขนาดไฟล์ 101 KB
จำนวนการติดตั้ง 8,400
เวอร์ชันปัจจุบัน 0.0.15
อัปเดตครั้งล่าสุด 2020-05-21
วันที่เผยแพร่ 2020-05-21
คะแนน 3.56/5 รวมทั้งหมด 54 คะแนน
ผู้พัฒนา Ramkumar K R
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open in new tab",
    "version": "0.0.15",
    "author": "Ramkumar K R",
    "description": "Open links in new tab for a list of specified domains. Useful for sites such as hackernews",
    "permissions": [
        "storage",
        ""
    ],
    "browser_action": {
        "browser_style": false,
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tabify.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "icons": {
        "52": "icon.png"
    }
}