Asset downloader
Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!
Vad är Asset downloader?
Asset downloader är en Chrome-tillägg utvecklad av https://asogiraffe.com, och dess huvudfunktion är "Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!".
Tilläggsskärmbilder
Ladda ner Asset downloader-förlängningens CRX-fil
Ladda ner Asset downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
With the asset downloader, you can easily download the assets of any App Store/Google Play app, direct from the Apple/Google URLs.
Grundläggande Information om Tillägg
Namn | Asset downloader |
ID | ejkplobmohohocbnpcmnehnebmpeappa |
Officiell webbadress | https://chromewebstore.google.com/detail/asset-downloader/ejkplobmohohocbnpcmnehnebmpeappa |
Beskrivning | Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy! |
Filstorlek | 21.61 KB |
Antal Installationer | 305 |
Aktuell Version | 2.0.3 |
Senast Uppdaterad | 2022-09-21 |
Publiceringsdatum | 2022-06-04 |
Utvecklare | https://asogiraffe.com |
Betalningssätt | free |
Tilläggswebbplats | https://asogiraffe.com/tools/asset-downloader |
Stödda Språk | 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" ] } |