Screen Capture and download

Capture current page and download the image.

什麼是Screen Capture and download?

Screen Capture and download是由extensioncreatorsllc開發的Chrome擴展程式,該擴展的主要功能是“Capture current page and download the image.”。

擴展截圖

screenshot

下載Screen Capture and download擴展crx文件

下載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
官方網址 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
}