VSCO Media Downloader
Simply download & archive media from VSCO.
Was ist VSCO Media Downloader?
VSCO Media Downloader ist eine Chrome-Erweiterung, die von https://vscodownload.co entwickelt wurde, und ihr Hauptmerkmal ist "Simply download & archive media from VSCO.".
Erweiterungsscreenshots
VSCO Media Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie VSCO Media Downloader-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
Simply download & archive your photos. We place simple download buttons on your feed, public profiles and collections so you can easily download photos. The web application has been completely phased out, you will no longer be redirected to another site to download your media. Now you can scroll through profiles gallery, profile photo, collections, journals and your feed to find something worth downloading. Quick and easy!
Grundlegende Informationen zur Erweiterung
Name | VSCO Media Downloader |
ID | looapkhpinpjaioiljphfmbnhbbgfcpl |
Offizielle URL | https://chromewebstore.google.com/detail/vsco-media-downloader/looapkhpinpjaioiljphfmbnhbbgfcpl |
Beschreibung | Simply download & archive media from VSCO. |
Dateigröße | 324 KB |
Installationsanzahl | 10,556 |
Aktuelle Version | 3.0.3.0 |
Letztes Update | 2020-02-23 |
Veröffentlichungsdatum | 2020-02-23 |
Bewertung | 3.41/5 Insgesamt 95 Bewertungen |
Entwickler | https://vscodownload.co |
Zahlungsart | free |
Erweiterungswebsite | https://vscodownload.co/ |
Hilfeseite URL | https://vscodownload.co/ |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "VSCO Media Downloader", "version": "3.0.3.0", "description": "Simply download & archive media from VSCO.", "permissions": [ "storage", "tabs" ], "content_scripts": [ { "css": [ "css\/vsco-download.css" ], "js": [ "js\/vsco-download.js" ], "matches": [ "*:\/\/*.vsco.co\/*", "*:\/\/vsco.co\/*" ] } ], "options_ui": { "page": "index.html", "open_in_tab": true }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "browser_action": { "default_icon": [] }, "icons": { "16": "img\/icon\/light\/icon16.png", "32": "img\/icon\/light\/icon32.png", "48": "img\/icon\/light\/icon48.png", "64": "img\/icon\/light\/icon64.png", "96": "img\/icon\/light\/icon96.png", "128": "img\/icon\/light\/icon128.png" } } |