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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}