Lightweight Screenshot

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

What is Lightweight Screenshot?

Lightweight Screenshot is a Chrome extension developed by Adam Feor, and its main feature is "Take screenshots. Also works for full page and custom-size screenshots.".

Extension Screenshots

screenshot

Download Lightweight Screenshot Extension CRX File

Download Lightweight Screenshot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Lightweight Screenshot Lightweight Screenshot
ID eapeifgbfommamnclhbppicejicnpooc
Official URL https://chromewebstore.google.com/detail/lightweight-screenshot/eapeifgbfommamnclhbppicejicnpooc
Description Take screenshots. Also works for full page and custom-size screenshots.
File Size 39.4 KB
Installation Count 478
Current Version 1.1
Last Updated 2018-04-29
Publish Date 2018-04-29
Rating 4.00/5 Total 5 Ratings
Developer Adam Feor
Payment Type free
Supported Languages 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"
    ]
}