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!".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл 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 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"
    ]
}