Asset downloader
Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!
Asset downloader là gì?
Asset downloader là một tiện ích mở rộng Chrome được phát triển bởi https://asogiraffe.com, và tính năng chính của nó là "Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Asset downloader
Tải xuống các tệp mở rộng Asset downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
With the asset downloader, you can easily download the assets of any App Store/Google Play app, direct from the Apple/Google URLs.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Asset downloader |
ID | ejkplobmohohocbnpcmnehnebmpeappa |
URL Chính Thức | https://chromewebstore.google.com/detail/asset-downloader/ejkplobmohohocbnpcmnehnebmpeappa |
Mô tả | Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy! |
Kích Thước Tệp | 21.61 KB |
Số Lần Cài Đặt | 305 |
Phiên Bản Hiện Tại | 2.0.3 |
Cập Nhật Lần Cuối | 2022-09-21 |
Ngày Phát Hành | 2022-06-04 |
Nhà Phát Triển | https://asogiraffe.com |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://asogiraffe.com/tools/asset-downloader |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |