Asset downloader
Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!
Hvad er Asset downloader?
Asset downloader er en Chrome-udvidelse udviklet af https://asogiraffe.com, og dens hovedfunktion er "Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!".
Udvidelsesskærmbilleder
Download Asset downloader-udvidelses-CRX-fil
Download Asset downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
With the asset downloader, you can easily download the assets of any App Store/Google Play app, direct from the Apple/Google URLs. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ejkplobmohohocbnpcmnehnebmpeappa |
| Officiel URL | https://chromewebstore.google.com/detail/asset-downloader/ejkplobmohohocbnpcmnehnebmpeappa |
| Beskrivelse | Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy! |
| Filstørrelse | 21.61 KB |
| Antal Installationer | 305 |
| Nuværende Version | 2.0.3 |
| Senest Opdateret | 2022-09-21 |
| Udgivelsesdato | 2022-06-04 |
| Udvikler | https://asogiraffe.com |
| Betalingsmetode | free |
| Udvidelseswebsted | https://asogiraffe.com/tools/asset-downloader |
| Understøttede Sprog | 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"
]
} | |