Canvas Capture

Canvas Element capture and auto named.

Canvas Capture क्या है?

Canvas Capture dama द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Canvas Element capture and auto named."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Canvas Capture एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    }
}