Play Store Reviews

Play Store Reviews

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

Merlin
Additional files are visible only to premium users

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