Canvas Capture
Canvas Element capture and auto named.
Hvad er Canvas Capture?
Canvas Capture er en Chrome-udvidelse udviklet af dama, og dens hovedfunktion er "Canvas Element capture and auto named.".
Udvidelsesskærmbilleder
Download Canvas Capture-udvidelses-CRX-fil
Download Canvas Capture-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
canvas要素の画像をページタイトル、取得日時付きのファイル名で1クリックで保存できます。
ver.0.3 manifest v3に対応 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | cpkdmolbpdpjcdlnmakbippomfapnigd |
| Officiel URL | https://chromewebstore.google.com/detail/canvas-capture/cpkdmolbpdpjcdlnmakbippomfapnigd |
| Beskrivelse | Canvas Element capture and auto named. |
| Filstørrelse | 12.34 KB |
| Antal Installationer | 147 |
| Nuværende Version | 0.3 |
| Senest Opdateret | 2022-12-30 |
| Udgivelsesdato | 2019-03-15 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | dama |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
} | |