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…

New Tab Alwaysคืออะไร?

New Tab Always เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "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…"

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

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

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

                        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.                    

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

ชื่อ New Tab Always New Tab Always
ID khcoicdljjkpkhoinjdglndicbibmlch
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/new-tab-always/khcoicdljjkpkhoinjdglndicbibmlch
คำอธิบาย 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…
ขนาดไฟล์ 113 KB
จำนวนการติดตั้ง 65
เวอร์ชันปัจจุบัน 2.1
อัปเดตครั้งล่าสุด 2018-06-09
วันที่เผยแพร่ 2018-06-09
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
}