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.

什么是Simple Page Screenshot?

Simple Page Screenshot是由paradoxxxzero开发的Chrome扩展程序,该扩展的主要功能是“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.”。

扩展截图

screenshot
screenshot

下载Simple Page Screenshot扩展crx文件

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

扩展使用说明

                        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                    

扩展基本信息

名称 Simple Page Screenshot Simple Page Screenshot
ID llhehkgnfcfjbpknaljplknmimhggbpa
官方URL https://chrome.google.com/webstore/detail/simple-page-screenshot/llhehkgnfcfjbpknaljplknmimhggbpa
简介 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.
文件大小 8.71 KB
安装次数 255
当前版本 1.0.0
更新时间 2014-04-04
上架时间 2014-04-04
评分 1.00/5 共1次评分
开发者 paradoxxxzero
付费类型 free
扩展官网 https://github.com/paradoxxxzero/simple_page_screenshot
支持的语言 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",
        ""
    ]
}