Asset downloader
Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!
What is Asset downloader?
Asset downloader is a Chrome extension developed by https://asogiraffe.com, and its main feature is "Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!".
Extension Screenshots
Download Asset downloader Extension CRX File
Download Asset downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
With the asset downloader, you can easily download the assets of any App Store/Google Play app, direct from the Apple/Google URLs.
Extension Basic Information
Name | Asset downloader |
ID | ejkplobmohohocbnpcmnehnebmpeappa |
Official URL | https://chromewebstore.google.com/detail/asset-downloader/ejkplobmohohocbnpcmnehnebmpeappa |
Description | Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy! |
File Size | 21.61 KB |
Installation Count | 305 |
Current Version | 2.0.3 |
Last Updated | 2022-09-21 |
Publish Date | 2022-06-04 |
Developer | https://asogiraffe.com |
Payment Type | free |
Extension Website | https://asogiraffe.com/tools/asset-downloader |
Supported Languages | 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" ] } |