Screenshot Extension (Open Source)

A browser extension that takes screenshots

Screenshot Extension (Open Source)คืออะไร?

Screenshot Extension (Open Source) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Michael และคุณลักษณะหลักของมันคือ "A browser extension that takes screenshots"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Screenshot Extension (Open Source)

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

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

                        A browser extension that takes full-page or partial screenshots!

- Hold the Option/Alt key and drag the mouse to create partial screenshots.
- Click the icon to create full-page screenshots.

Source code: https://github.com/lxieyang/screenshot-extension                    

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

ชื่อ Screenshot Extension (Open Source) Screenshot Extension (Open Source)
ID hmkbkbpdnembpeadgpcmjekihjmckdjh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/screenshot-extension-open/hmkbkbpdnembpeadgpcmjekihjmckdjh
คำอธิบาย A browser extension that takes screenshots
ขนาดไฟล์ 58.05 KB
จำนวนการติดตั้ง 149
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-11-20
วันที่เผยแพร่ 2020-11-18
ผู้พัฒนา Michael
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/lxieyang/chrome-extension-boilerplate-react
URL หน้าช่วยเหลือ https://github.com/lxieyang/chrome-extension-boilerplate-react
URL หน้านโยบายความเป็นส่วนตัว https://github.com/lxieyang/lxieyang.github.io/wiki/Chrome-Extension-Privacy-Policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A browser extension that takes screenshots",
    "version": "1.0.0",
    "name": "Screenshot Extension (Open Source)",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "icon-34.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "downloads",
        "",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "cross-32.png"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}