AsoSpy for Google Play Store

AsoSpy for Google Play Store

Enhance Play Store with app analytics. View app data instantly. Get insights on installs, release date, updates, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AsoSpy for Google Play Store",
  "version": "3.3",
  "description": "Enhance Play Store with app analytics. View app data instantly. Get insights on installs, release date, updates, and more. ",
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": "icons/icon.png",
    "default_title": "AsoSpy",
    "default_popup": "login/login.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://play.google.com/store/*",
        "*://play.google.com/work/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}