Screen Capture and download

Capture current page and download the image.

Screen Capture and downloadคืออะไร?

Screen Capture and download เป็นส่วนขยายของ Chrome ที่พัฒนาโดย extensioncreatorsllc และคุณลักษณะหลักของมันคือ "Capture current page and download the image."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Screen Capture and download

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

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

                        This chrome extension allows user to take the screen shot of current page in chrome and download it as a image.                    

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

ชื่อ Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
คำอธิบาย Capture current page and download the image.
ขนาดไฟล์ 157 KB
จำนวนการติดตั้ง 6,726
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2019-08-27
วันที่เผยแพร่ 2019-08-27
คะแนน 4.52/5 รวมทั้งหมด 25 คะแนน
ผู้พัฒนา extensioncreatorsllc
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://bornsecret.com/privacy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Capture and download",
    "version": "1.5",
    "description": "Capture current page and download the image.",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content1.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Capture screen and download!",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon128.png",
        "16": "icon.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "permissions": [
        "activeTab",
        "downloads",
        ""
    ],
    "manifest_version": 2
}