Inject sidebar

Inject a sidebar on the current tab when the page action is clicked

Inject sidebarคืออะไร?

Inject sidebar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย whittlrapp และคุณลักษณะหลักของมันคือ "Inject a sidebar on the current tab when the page action is clicked"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Inject sidebar

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

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

                                            

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

ชื่อ Inject sidebar Inject sidebar
ID kbbmnigcllcnemhdlaenejpkaklcginf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/inject-sidebar/kbbmnigcllcnemhdlaenejpkaklcginf
คำอธิบาย Inject a sidebar on the current tab when the page action is clicked
ขนาดไฟล์ 24.6 KB
จำนวนการติดตั้ง 12
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2016-09-01
วันที่เผยแพร่ 2016-08-31
ผู้พัฒนา whittlrapp
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inject sidebar",
    "manifest_version": 2,
    "description": "Inject a sidebar on the current tab when the page action is clicked",
    "version": "0.2",
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_icon": "whittlr.logo.png",
        "default_title": "Inject sidebar"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "web_accessible_resources": [
        "frame.html"
    ]
}