ASO - Google Play Short Description Viewer

ASO - Google Play Short Description Viewer

This extension shows the short description for the current Google Play application. Useful for App Store Optimization (ASO).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ASO - Google Play Short Description Viewer",
  "description": "This extension shows the short description for the current Google Play application. Useful for App Store Optimization (ASO).",
  "version": "1.0.15",
  "permissions": [
    "tabs"
  ],
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://play.google.com/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  }
}