Search Trends

Search Trends

Gathers trend data for your Google searches

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "icons": {
    "128": "images/icon.png"
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "options_page": "html/options.html",
  "devtools_page": "html/devtools.html",
  "permissions": [
    "https://trends.google.com/*",
    "https://www.google.com/*",
    "storage"
  ],
  "web_accessible_resources": [
    "js/*",
    "html/*",
    "css/*",
    "images/*",
    "*.html"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "name": "Search Trends",
  "version": "0.1",
  "description": "Gathers trend data for your Google searches"
}