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
官方網址 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",
        ""
    ]
}