Simple Page Screenshot

Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.

What is Simple Page Screenshot?

Simple Page Screenshot is a Chrome extension developed by paradoxxxzero, and its main feature is "Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.".

Extension Screenshots

screenshot
screenshot

Download Simple Page Screenshot Extension CRX File

Download Simple Page 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

                        Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.


Right click on the image to save it or copy the datu URL with Copy image URL                    

Extension Basic Information

Name Simple Page Screenshot Simple Page Screenshot
ID llhehkgnfcfjbpknaljplknmimhggbpa
Official URL https://chrome.google.com/webstore/detail/simple-page-screenshot/llhehkgnfcfjbpknaljplknmimhggbpa
Description Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.
File Size 8.71 KB
Installation Count 255
Current Version 1.0.0
Last Updated 2014-04-04
Publish Date 2014-04-04
Rating 1.00/5 Total 1 Ratings
Developer paradoxxxzero
Payment Type free
Extension Website https://github.com/paradoxxxzero/simple_page_screenshot
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Page Screenshot",
    "version": "1.0.0",
    "author": "Florian Mounier - paradoxxxzero",
    "homepage_url": "https:\/\/github.com\/paradoxxxzero\/simple_page_screenshot",
    "description": "Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        ""
    ]
}