Play Store Reviews

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

Qu'est-ce que Play Store Reviews ?

Play Store Reviews est une extension Chrome développée par Nirvana Tikku, et sa fonction principale est "Get all your Play Store Reviews in a JSON file, packaged in a zip container.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Play Store Reviews

Téléchargez les fichiers d'extension Play Store Reviews au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Play Store Reviews Play Store Reviews
ID ldggikfajgoedghjnflfafiiheagngoa
URL Officiel https://chromewebstore.google.com/detail/play-store-reviews/ldggikfajgoedghjnflfafiiheagngoa
Description Get all your Play Store Reviews in a JSON file, packaged in a zip container.
Taille du Fichier 73.92 KB
Nombre d'Installations 7,000
Version Actuelle 1.2
Dernière Mise à Jour 2014-01-13
Date de Publication 2014-01-12
Évaluation 4.13/5 Total 526 Évaluations
Développeur Nirvana Tikku
Type de Paiement free
Langues Prises en Charge 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"
    }
}