Screen Capture and download

Capture current page and download the image.

Screen Capture and downloadとは何ですか?

Screen Capture and downloadはextensioncreatorsllcによって開発されたChromeの拡張機能で、その主な機能は「Capture current page and download the image.」です。

拡張機能のスクリーンショット

screenshot

Screen Capture and download拡張機能のCRXファイルをダウンロード

Screen Capture and download拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This chrome extension allows user to take the screen shot of current page in chrome and download it as a image.                    

拡張機能の基本情報

名前 Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
公式URL https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
説明 Capture current page and download the image.
ファイルサイズ 157 KB
インストール数 6,726
現在のバージョン 1.5
最終更新日 2019-08-27
公開日 2019-08-27
評価 4.52/5 合計 25 レビュー
開発者 extensioncreatorsllc
支払い方法 free
プライバシーポリシーページのURL https://bornsecret.com/privacy.html
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Capture and download",
    "version": "1.5",
    "description": "Capture current page and download the image.",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content1.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Capture screen and download!",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon128.png",
        "16": "icon.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "permissions": [
        "activeTab",
        "downloads",
        ""
    ],
    "manifest_version": 2
}