Google Trends for Twitter

Google Trends for Twitter

A simple and convenient tool that shows you the Google trends on the Twitter page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A simple and convenient tool that shows you the Google trends on the Twitter page",
  "version": "1.0.2",
  "manifest_version": 3,
  "name": "Google Trends for Twitter",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "/img/icon-48.png"
  },
  "icons": {
    "16": "/img/icon-16.png",
    "48": "/img/icon-48.png",
    "128": "/img/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "http://twitter.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "/img/*"
      ],
      "matches": []
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://trends.google.com/*"
  ]
}