Asset downloader
Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!
Τι είναι το Asset downloader;
Το Asset downloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://asogiraffe.com, και η κύρια λειτουργία του είναι "Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Asset downloader
Λήψη αρχείων επέκτασης Asset downloader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
With the asset downloader, you can easily download the assets of any App Store/Google Play app, direct from the Apple/Google URLs.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Asset downloader |
ID | ejkplobmohohocbnpcmnehnebmpeappa |
Επίσημο URL | https://chromewebstore.google.com/detail/asset-downloader/ejkplobmohohocbnpcmnehnebmpeappa |
Περιγραφή | Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy! |
Μέγεθος Αρχείου | 21.61 KB |
Αριθμός Εγκαταστάσεων | 305 |
Τρέχουσα Έκδοση | 2.0.3 |
Τελευταία Ενημέρωση | 2022-09-21 |
Ημερομηνία Δημοσίευσης | 2022-06-04 |
Προγραμματιστής | https://asogiraffe.com |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://asogiraffe.com/tools/asset-downloader |
Υποστηριζόμενες Γλώσσες | 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" ] } |