Asset downloader
Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!
Co je Asset downloader?
Asset downloader je rozšíření Chrome vyvinuté https://asogiraffe.com, a jeho hlavní funkcí je „Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Asset downloader
Stáhněte si soubory rozšíření Asset downloader ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
With the asset downloader, you can easily download the assets of any App Store/Google Play app, direct from the Apple/Google URLs.
Základní Informace o Rozšíření
Název | Asset downloader |
ID | ejkplobmohohocbnpcmnehnebmpeappa |
Oficiální URL | https://chromewebstore.google.com/detail/asset-downloader/ejkplobmohohocbnpcmnehnebmpeappa |
Popis | Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy! |
Velikost souboru | 21.61 KB |
Počet instalací | 305 |
Aktuální Verze | 2.0.3 |
Poslední Aktualizace | 2022-09-21 |
Datum Vydání | 2022-06-04 |
Vývojář | https://asogiraffe.com |
Typ Platby | free |
Webové stránky Rozšíření | https://asogiraffe.com/tools/asset-downloader |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Asset downloader", "description": "Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!", "homepage_url": "https:\/\/github.com\/asogiraffe\/asogiraffe\/tree\/main\/chrome-extension", "version": "2.0.3", "manifest_version": 3, "content_scripts": [ { "run_at": "document_start", "js": [ "app-store.js" ], "css": [ "styles.css" ], "matches": [ "*:\/\/apps.apple.com\/*" ] }, { "run_at": "document_start", "js": [ "google-play.js" ], "css": [ "styles.css" ], "matches": [ "*:\/\/play.google.com\/*" ] } ], "web_accessible_resources": [ { "matches": [ "*:\/\/apps.apple.com\/*", "*:\/\/play.google.com\/*" ], "resources": [ "logo.png", "logo-white.png" ] } ], "action": { "default_icon": { "16": "icon.png", "32": "icon.png", "48": "icon.png", "128": "icon.png" } }, "background": { "service_worker": "background.js" }, "permissions": [ "webNavigation" ] } |