Asset downloader
Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!
Was ist Asset downloader?
Asset downloader ist eine Chrome-Erweiterung, die von https://asogiraffe.com entwickelt wurde, und ihr Hauptmerkmal ist "Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!".
Erweiterungsscreenshots
Asset downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Asset 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
With the asset downloader, you can easily download the assets of any App Store/Google Play app, direct from the Apple/Google URLs.
Grundlegende Informationen zur Erweiterung
Name | Asset downloader |
ID | ejkplobmohohocbnpcmnehnebmpeappa |
Offizielle URL | https://chromewebstore.google.com/detail/asset-downloader/ejkplobmohohocbnpcmnehnebmpeappa |
Beschreibung | Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy! |
Dateigröße | 21.61 KB |
Installationsanzahl | 305 |
Aktuelle Version | 2.0.3 |
Letztes Update | 2022-09-21 |
Veröffentlichungsdatum | 2022-06-04 |
Entwickler | https://asogiraffe.com |
Zahlungsart | free |
Erweiterungswebsite | https://asogiraffe.com/tools/asset-downloader |
Unterstützte Sprachen | 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" ] } |