Play Store Reviews
Get all your Play Store Reviews in a JSON file, packaged in a zip container.
Play Store Reviewsคืออะไร?
Play Store Reviews เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nirvana Tikku และคุณลักษณะหลักของมันคือ "Get all your Play Store Reviews in a JSON file, packaged in a zip container."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Play Store Reviews
ดาวน์โหลดไฟล์ส่วนขยาย Play Store Reviews ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This chrome extension allows application developers with app's in the Google Play store to download their app's reviews. The extension requires that you're logged in to the Play services portal, and will, upon your selection of an app, build a list of PlayReview's that contain the following data: # of stars, version, author, date, time, title and text for any given review, where available. Simply select on the browser extension button to get started! - If you're not logged in to the play services, the button will take you to the play services portal. - If you are logged in, you will need to specify an app to gather reviews from. - If you are logged in and currently browsing the given app's reviews page, invoking the action using the button will begin gathering the reviews. Once the process is complete, you will be notified and a zip file will be downloaded. While it's gathering reviews you will be able to see a number in a badge that represents exactly how many have been processed. In that zip file there will be a JSON file with a list of objects that represent a review. *NOTE* This chrome extension performs everything locally. There are no analytics and no round-trips to 3rd party servers. The extension will load a content_script for the play.google.com/apps/publish page, and nothing will leave your browser.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Play Store Reviews |
ID | ldggikfajgoedghjnflfafiiheagngoa |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/play-store-reviews/ldggikfajgoedghjnflfafiiheagngoa |
คำอธิบาย | Get all your Play Store Reviews in a JSON file, packaged in a zip container. |
ขนาดไฟล์ | 73.92 KB |
จำนวนการติดตั้ง | 7,000 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2014-01-13 |
วันที่เผยแพร่ | 2014-01-12 |
คะแนน | 4.13/5 รวมทั้งหมด 526 คะแนน |
ผู้พัฒนา | Nirvana Tikku |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Play Store Reviews", "description": "Get all your Play Store Reviews in a JSON file, packaged in a zip container.", "version": "1.2", "permissions": [ "https:\/\/play.google.com\/", "tabs", "activeTab" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/play.google.com\/apps\/publish\/*" ], "js": [ "jszip.js", "scraper.js" ] } ], "browser_action": { "default_icon": "icon.png" } } |