GSearch Tracker

GSearch Tracker

Track your each google search and allow you to see in a list and chart format with various date range search option.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GSearch Tracker",
  "version": "3.2.1",
  "description": "Track your each google search and allow you to see in a list and chart format with various date range search option. ",
  "browser_action": {
    "default_icon": "img/32.png",
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/64.png",
    "128": "img/128.png",
    "256": "img/256.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.google.com/*"
      ],
      "include_globs": [
        "*google.com/???s/*"
      ],
      "js": [
        "js/contentScript.js"
      ],
      "all_frames": true
    }
  ]
}