Keyword Finder

Keyword Finder

Get and highlight the most used words in the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Keyword Finder",
  "description": "Get and highlight the most used words in the page",
  "author": "Sami El Maameri",
  "version": "0.0.0.9",
  "permissions": [
    "http://www.google.com/",
    "http://sleepy-beach-24875.herokuapp.com/"
  ],
  "short_name": "Keyword Finder",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "mark.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Keywords Finder",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "16x16.png",
    "64": "64x64.png",
    "128": "128x128.png"
  },
  "manifest_version": 2
}