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