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