Apple Search Ads Keyword Popularity Viewer

Apple Search Ads Keyword Popularity Viewer

View your keywords popularity from Apple SearchAds via SearchAds.com extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "images/sa-16.png",
      "32": "images/sa-32.png",
      "48": "images/sa-48.png",
      "128": "images/sa-128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "style.css"
      ],
      "js": [
        "content.js",
        "jquery-3.5.1.min.js",
        "mutation-summary.js",
        "mutation-listener.js",
        "asa-request.js",
        "render.js",
        "keyword-popup.js",
        "keyword-table.js"
      ],
      "matches": [
        "https://app.searchads.apple.com/*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "description": "View your keywords popularity from Apple SearchAds via SearchAds.com extension.",
  "icons": {
    "16": "images/sa-16.png",
    "32": "images/sa-32.png",
    "48": "images/sa-48.png",
    "128": "images/sa-128.png"
  },
  "manifest_version": 2,
  "name": "Apple Search Ads Keyword Popularity Viewer",
  "permissions": [
    "storage",
    "webRequest",
    "https://app.searchads.apple.com/*/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.2"
}