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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download the assets for any App Store or Google Play page. Make competitor analysis simple and easy!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Asset downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |