Canvas Capture
Canvas Element capture and auto named.
ما هو Canvas Capture؟
Canvas Capture هو إضافة Chrome تم تطويرها بواسطة dama، والميزة الرئيسية لها هي "Canvas Element capture and auto named.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Canvas Capture
قم بتنزيل ملفات الامتداد Canvas Capture بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
canvas要素の画像をページタイトル、取得日時付きのファイル名で1クリックで保存できます。 ver.0.3 manifest v3に対応
معلومات أساسية عن التمديد
الاسم | 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" } } |