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",
        ""
    ]
}