Lightweight Screenshot

Take screenshots. Also works for full page and custom-size screenshots.

什么是Lightweight Screenshot?

Lightweight Screenshot是由Adam Feor开发的Chrome扩展程序,该扩展的主要功能是“Take screenshots. Also works for full page and custom-size screenshots.”。

扩展截图

screenshot

下载Lightweight Screenshot扩展crx文件

下载Lightweight Screenshot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A simple screenshot extension for Chrome. Supports taking screenshots of the current window, of an entire page (scrolling) and of a custom area.                    

扩展基本信息

名称 Lightweight Screenshot Lightweight Screenshot
ID eapeifgbfommamnclhbppicejicnpooc
官方URL https://chromewebstore.google.com/detail/lightweight-screenshot/eapeifgbfommamnclhbppicejicnpooc
简介 Take screenshots. Also works for full page and custom-size screenshots.
文件大小 39.4 KB
安装次数 478
当前版本 1.1
更新时间 2018-04-29
上架时间 2018-04-29
评分 4.00/5 共5次评分
开发者 Adam Feor
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lightweight Screenshot",
    "description": "Take screenshots. Also works for full page and custom-size screenshots.",
    "version": "1.1",
    "icons": {
        "19": "images\/monitoriconsmall.png",
        "48": "images\/monitoricon48.png",
        "128": "images\/monitoricon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/cus.png",
        "image\/vis.png",
        "images\/full.png",
        "images\/check.png",
        "images\/cross.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/monitoriconsmall.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "",
        "downloads"
    ]
}