Asset downloader

Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!

Cos'è Asset downloader?

Asset downloader è un'estensione di Chrome sviluppata da https://asogiraffe.com, e la sua funzione principale è "Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Asset downloader

Scarica i file di estensione Asset downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        With the asset downloader, you can easily download the assets of any App Store/Google Play app, direct from the Apple/Google URLs.                    

Informazioni di Base sull'Estensione

Nome Asset downloader Asset downloader
ID ejkplobmohohocbnpcmnehnebmpeappa
URL Ufficiale https://chromewebstore.google.com/detail/asset-downloader/ejkplobmohohocbnpcmnehnebmpeappa
Descrizione Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!
Dimensione del File 21.61 KB
Conteggio Installazioni 305
Versione Corrente 2.0.3
Ultimo Aggiornamento 2022-09-21
Data di Pubblicazione 2022-06-04
Sviluppatore https://asogiraffe.com
Tipo di Pagamento free
Sito Web dell'Estensione https://asogiraffe.com/tools/asset-downloader
Lingue Supportate 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"
    ]
}