SEO Keyword Extractor

SEO Keyword Extractor

This extension will extract Google suggestions keyword.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SEO Keyword Extractor",
  "short_name": "Keyword Suggest Extractor",
  "description": "This extension will extract Google suggestions keyword.",
  "version": "2.0",
  "browser_action": {
    "default_title": "Keyword Suggest Extractor",
    "default_icon": "./images/icon128.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "./images/icon16.png",
    "48": "./images/icon48.png",
    "128": "./images/icon128.png"
  },
  "background": {
    "scripts": [
      "./js/bg.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.co.in/*",
        "https://www.google.cm/*",
        "https://www.google.co.uk/*",
        "https://www.google.com.vn/*",
        "https://*/*",
        "https://www.google.com.my/*",
        "https://www.google.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "./js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "style.css"
  ],
  "permissions": [
    "storage"
  ]
}