ScreenCapture

ScreenCapture

ScreenCaptureคืออะไร?

ScreenCapture เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yingshangmx และคุณลักษณะหลักของมันคือ "ScreenCapture"

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

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

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

                                            

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

ชื่อ ScreenCapture ScreenCapture
ID oepbcjjbipfaecfbpmimikkkiioelaii
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/screencapture/oepbcjjbipfaecfbpmimikkkiioelaii
คำอธิบาย ScreenCapture
ขนาดไฟล์ 151 KB
จำนวนการติดตั้ง 108
เวอร์ชันปัจจุบัน 1.6
อัปเดตครั้งล่าสุด 2018-01-22
วันที่เผยแพร่ 2018-01-22
ผู้พัฒนา yingshangmx
ประเภทการชำระเงิน free
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "appicon_19x19.png",
            "38": "appicon_38x38.png"
        },
        "default_popup": "popup.html",
        "default_title": "ScreenCapture"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "scripts\/mx\/jquery.js",
                "scripts\/mx\/controller.js"
            ],
            "match_about_blank": true,
            "matches": [
                ""
            ]
        },
        {
            "all_frames": true,
            "js": [
                "scripts\/content\/preload.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "js": [
                "scripts\/content\/postload.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "ScreenCapture",
    "icons": {
        "128": "icon_128.png",
        "16": "icon_16.png",
        "48": "icon_48.png"
    },
    "manifest_version": 2,
    "name": "ScreenCapture",
    "permissions": [
        "",
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "downloads",
        "storage",
        "notifications",
        "storage",
        "unlimitedStorage",
        "activeTab"
    ],
    "version": "1.6"
}