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. là gì?

Canvas downloader. Find and export. là một tiện ích mở rộng Chrome được phát triển bởi santriseus, và tính năng chính của nó là "Extension helps detect if canvas is used at the web page and allows to export and save canvas content.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Canvas downloader. Find and export.

Tải xuống các tệp mở rộng Canvas downloader. Find and export. dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Canvas downloader. Find and export. Canvas downloader. Find and export.
ID dgfcgcafnnbdpojemnkiiilnnghebgja
URL Chính Thức https://chromewebstore.google.com/detail/canvas-downloader-find-an/dgfcgcafnnbdpojemnkiiilnnghebgja
Mô tả Extension helps detect if canvas is used at the web page and allows to export and save canvas content.
Kích Thước Tệp 75.57 KB
Số Lần Cài Đặt 5,292
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2024-01-03
Ngày Phát Hành 2018-07-27
Đánh Giá 4.07/5 Tổng số 14 Đánh Giá
Nhà Phát Triển santriseus
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/santriseus/canvas-downloader
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}