Lightweight Screenshot

Take screenshots. Also works for full page and custom-size screenshots.

Lightweight Screenshotとは何ですか?

Lightweight ScreenshotはAdam Feorによって開発されたChromeの拡張機能で、その主な機能は「Take screenshots. Also works for full page and custom-size screenshots.」です。

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

screenshot

Lightweight Screenshot拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        A simple screenshot extension for Chrome. Supports taking screenshots of the current window, of an entire page (scrolling) and of a custom area.                    

拡張機能の基本情報

名前 Lightweight Screenshot Lightweight Screenshot
ID eapeifgbfommamnclhbppicejicnpooc
公式URL https://chromewebstore.google.com/detail/lightweight-screenshot/eapeifgbfommamnclhbppicejicnpooc
説明 Take screenshots. Also works for full page and custom-size screenshots.
ファイルサイズ 39.4 KB
インストール数 478
現在のバージョン 1.1
最終更新日 2018-04-29
公開日 2018-04-29
評価 4.00/5 合計 5 レビュー
開発者 Adam Feor
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lightweight Screenshot",
    "description": "Take screenshots. Also works for full page and custom-size screenshots.",
    "version": "1.1",
    "icons": {
        "19": "images\/monitoriconsmall.png",
        "48": "images\/monitoricon48.png",
        "128": "images\/monitoricon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/cus.png",
        "image\/vis.png",
        "images\/full.png",
        "images\/check.png",
        "images\/cross.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/monitoriconsmall.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "",
        "downloads"
    ]
}