Canvas Capture

Canvas Element capture and auto named.

Canvas Captureとは何ですか?

Canvas Captureはdamaによって開発されたChromeの拡張機能で、その主な機能は「Canvas Element capture and auto named.」です。

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

screenshot

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

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

拡張機能の使用方法

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

ver.0.3 manifest v3に対応                    

拡張機能の基本情報

名前 Canvas Capture Canvas Capture
ID cpkdmolbpdpjcdlnmakbippomfapnigd
公式URL https://chromewebstore.google.com/detail/canvas-capture/cpkdmolbpdpjcdlnmakbippomfapnigd
説明 Canvas Element capture and auto named.
ファイルサイズ 12.34 KB
インストール数 147
現在のバージョン 0.3
最終更新日 2022-12-30
公開日 2019-03-15
評価 5.00/5 合計 1 レビュー
開発者 dama
Eメール [email protected]
支払い方法 free
対応言語 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"
    }
}