Play Store Reviews

Get all your Play Store Reviews in a JSON file, packaged in a zip container.

Play Store Reviews란 무엇입니까?

Play Store Reviews은(는) Nirvana Tikku에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get all your Play Store Reviews in a JSON file, packaged in a zip container."입니다.

확장 프로그램 스크린샷

Play Store Reviews 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    }
}