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. 擴展基本資訊
| 名稱 | |
| ID | ejkplobmohohocbnpcmnehnebmpeappa |
| 官方網址 | 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"
]
} | |