Canvas Capture

Canvas Element capture and auto named.

What is Canvas Capture?

Canvas Capture is a Chrome extension developed by dama, and its main feature is "Canvas Element capture and auto named.".

Extension Screenshots

screenshot

Download Canvas Capture Extension CRX File

Download Canvas Capture extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        canvas要素の画像をページタイトル、取得日時付きのファイル名で1クリックで保存できます。

ver.0.3 manifest v3に対応                    

Extension Basic Information

Name Canvas Capture Canvas Capture
ID cpkdmolbpdpjcdlnmakbippomfapnigd
Official URL https://chromewebstore.google.com/detail/canvas-capture/cpkdmolbpdpjcdlnmakbippomfapnigd
Description Canvas Element capture and auto named.
File Size 12.34 KB
Installation Count 147
Current Version 0.3
Last Updated 2022-12-30
Publish Date 2019-03-15
Rating 5.00/5 Total 1 Ratings
Developer dama
Email [email protected]
Payment Type free
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Canvas Capture",
    "version": "0.3",
    "manifest_version": 3,
    "description": "Canvas Element capture and auto named.",
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "downloads",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "options_ui": {
        "open_in_tab": false,
        "page": "option.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}