SVG Fetcher
Fetch all the SVG from the web
Was ist SVG Fetcher?
SVG Fetcher ist eine Chrome-Erweiterung, die von https://giroux-kevin.fr entwickelt wurde, und ihr Hauptmerkmal ist "Fetch all the SVG from the web".
Erweiterungsscreenshots
SVG Fetcher-Erweiterungs-CRX-Datei herunterladen
Laden Sie SVG Fetcher-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Just click on the add-on icon to get all the download links for the rendered page. Refresh the page when you're done. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kckjhgncjgdbiaadckjcnhbonfihmcic |
| Offizielle URL | https://chromewebstore.google.com/detail/svg-fetcher/kckjhgncjgdbiaadckjcnhbonfihmcic |
| Beschreibung | Fetch all the SVG from the web |
| Dateigröße | 13.13 KB |
| Installationsanzahl | 569 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2018-06-11 |
| Veröffentlichungsdatum | 2018-06-11 |
| Bewertung | 1.33/5 Insgesamt 3 Bewertungen |
| Entwickler | https://giroux-kevin.fr |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "SVG Fetcher",
"description": "Fetch all the SVG from the web",
"version": "1.1",
"browser_action": {
"default_icon": "icon128.png",
"default_title": "Show links"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"activeTab",
"*:\/\/*\/*"
],
"icons": {
"32": "icon32.png",
"128": "icon128.png"
}
} | |