VSCO Media Downloader
Simply download & archive media from VSCO.
Hvad er VSCO Media Downloader?
VSCO Media Downloader er en Chrome-udvidelse udviklet af https://vscodownload.co, og dens hovedfunktion er "Simply download & archive media from VSCO.".
Udvidelsesskærmbilleder
Download VSCO Media Downloader-udvidelses-CRX-fil
Download VSCO Media Downloader-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
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!
Grundlæggende oplysninger om udvidelsen
Navn | VSCO Media Downloader |
ID | looapkhpinpjaioiljphfmbnhbbgfcpl |
Officiel URL | https://chromewebstore.google.com/detail/vsco-media-downloader/looapkhpinpjaioiljphfmbnhbbgfcpl |
Beskrivelse | Simply download & archive media from VSCO. |
Filstørrelse | 324 KB |
Antal Installationer | 10,556 |
Nuværende Version | 3.0.3.0 |
Senest Opdateret | 2020-02-23 |
Udgivelsesdato | 2020-02-23 |
Bedømmelse | 3.41/5 Samlet 95 Bedømmelser |
Udvikler | https://vscodownload.co |
Betalingsmetode | free |
Udvidelseswebsted | https://vscodownload.co/ |
Hjælpeside-URL | https://vscodownload.co/ |
Understøttede Sprog | 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" } } |