Test Screenshot Extension

Demonstrate screenshot functionality in the chrome.tabs api.

Test Screenshot Extensionคืออะไร?

Test Screenshot Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://c-ev.com และคุณลักษณะหลักของมันคือ "Demonstrate screenshot functionality in the chrome.tabs api."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Test Screenshot Extension

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

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

                        Allows to create sceenshots                    

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

ชื่อ Test Screenshot Extension Test Screenshot Extension
ID ingdionndoopkgjhhfociobjglhdhegl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/test-screenshot-extension/ingdionndoopkgjhhfociobjglhdhegl
คำอธิบาย Demonstrate screenshot functionality in the chrome.tabs api.
ขนาดไฟล์ 6.83 KB
จำนวนการติดตั้ง 40
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2017-02-28
วันที่เผยแพร่ 2017-02-27
ผู้พัฒนา https://c-ev.com
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Test Screenshot Extension",
    "version": "1.3",
    "description": "Demonstrate screenshot functionality in the chrome.tabs api.",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "camera.png",
        "default_title": "Take a screen shot!"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/*"
    ],
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}