Canvas downloader. Find and export.

Extension helps detect if canvas is used at the web page and allows to export and save canvas content.

Canvas downloader. Find and export.とは何ですか?

Canvas downloader. Find and export.はsantriseusによって開発されたChromeの拡張機能で、その主な機能は「Extension helps detect if canvas is used at the web page and allows to export and save canvas content.」です。

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

screenshot
screenshot

Canvas downloader. Find and export.拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Extension helps detect if canvas is used at the web page and allows to export and download static canvas content in multiple formats.
Extension could be helpful if creator of the web site disabled the canvas context menu with "Save As" option. 
You could see the counter with the number of detected canvas elements in the extension icon, if any canvas detected. 
Sometimes the counter at the icon could be different from the real amount of available canvas elements, because of the security concerns like "Cross-Origin Resource Sharing" policies applied to source images.                    

拡張機能の基本情報

名前 Canvas downloader. Find and export. Canvas downloader. Find and export.
ID dgfcgcafnnbdpojemnkiiilnnghebgja
公式URL https://chromewebstore.google.com/detail/canvas-downloader-find-an/dgfcgcafnnbdpojemnkiiilnnghebgja
説明 Extension helps detect if canvas is used at the web page and allows to export and save canvas content.
ファイルサイズ 75.57 KB
インストール数 5,292
現在のバージョン 1.0.0
最終更新日 2024-01-03
公開日 2018-07-27
評価 4.07/5 合計 14 レビュー
開発者 santriseus
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/santriseus/canvas-downloader
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Canvas downloader. Find and export.",
    "short_name": "Canvas downloader.",
    "version": "1.0.0",
    "manifest_version": 3,
    "description": "Extension helps detect if canvas is used at the web page and allows to export and save canvas content.",
    "homepage_url": "https:\/\/github.com\/santriseus\/canvas-detect-and-download",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png"
        },
        "default_title": "Canvas downloader. Detect and export.",
        "default_popup": "src\/popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/inject.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "src\/service_worker.js"
    },
    "permissions": [
        "downloads"
    ]
}