Asset downloader
Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!
什么是Asset downloader?
Asset downloader是由https://asogiraffe.com开发的Chrome扩展程序,该扩展的主要功能是“Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!”。
扩展截图
下载Asset downloader扩展crx文件
下载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 |
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" ] } |