Screenshot Extension (Open Source)

A browser extension that takes screenshots

What is Screenshot Extension (Open Source)?

Screenshot Extension (Open Source) is a Chrome extension developed by Michael, and its main feature is "A browser extension that takes screenshots".

Extension Screenshots

screenshot

Download Screenshot Extension (Open Source) Extension CRX File

Download Screenshot Extension (Open Source) 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 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                    

Extension Basic Information

Name Screenshot Extension (Open Source) Screenshot Extension (Open Source)
ID hmkbkbpdnembpeadgpcmjekihjmckdjh
Official URL https://chromewebstore.google.com/detail/screenshot-extension-open/hmkbkbpdnembpeadgpcmjekihjmckdjh
Description A browser extension that takes screenshots
File Size 58.05 KB
Installation Count 149
Current Version 1.0.0
Last Updated 2020-11-20
Publish Date 2020-11-18
Developer Michael
Email [email protected]
Payment Type free
Extension Website https://github.com/lxieyang/chrome-extension-boilerplate-react
Help Page URL https://github.com/lxieyang/chrome-extension-boilerplate-react
Privacy Policy Page URL https://github.com/lxieyang/lxieyang.github.io/wiki/Chrome-Extension-Privacy-Policy
Supported Languages 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'"
}