Asset downloader
Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!
Qu'est-ce que Asset downloader ?
Asset downloader est une extension Chrome développée par https://asogiraffe.com, et sa fonction principale est "Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Asset downloader
Téléchargez les fichiers d'extension Asset downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
With the asset downloader, you can easily download the assets of any App Store/Google Play app, direct from the Apple/Google URLs.
Informations de Base sur l'Extension
Nom | Asset downloader |
ID | ejkplobmohohocbnpcmnehnebmpeappa |
URL Officiel | 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! |
Taille du Fichier | 21.61 KB |
Nombre d'Installations | 305 |
Version Actuelle | 2.0.3 |
Dernière Mise à Jour | 2022-09-21 |
Date de Publication | 2022-06-04 |
Développeur | https://asogiraffe.com |
Type de Paiement | free |
Site Web de l'Extension | https://asogiraffe.com/tools/asset-downloader |
Langues Prises en Charge | 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" ] } |