Trends Playground - Google Trends Leveled Up

Trends Playground - Google Trends Leveled Up

Get the data you want with the tool you already love. With Trends Playground, you gain access to powerful, in-depth analytics,…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Trends Playground - Google Trends Leveled Up",
  "version": "1.5",
  "permissions": [
    "storage",
    "scripting",
    "activeTab",
    "tabs"
  ],
  "host_permissions": [
    "http://localhost:5000/",
    "https://trendingdata.ai/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://trends.google.com/*"
      ],
      "js": [
        "lib/chartjs/Chart.min.js",
        "content.js",
        "gtrends-inject-chart.js",
        "playground.js",
        "token.js",
        "signpop.js",
        "load-font.js",
        "toggle-listener.js"
      ],
      "css": [
        "playground.css",
        "banner.css",
        "gtrendschart.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "gtrends-inject-chart.js",
        "lib/chartjs/Chart.min.js",
        "playground.js",
        "gtrends-inject.js",
        "signpop.js",
        "load-font.js",
        "icons/*.png"
      ],
      "matches": [
        "https://trends.google.com/*"
      ]
    }
  ]
}