Парсер Яндекс Wordstat

Парсер Яндекс Wordstat

Расширение Chrome для сбора семантики

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Парсер Яндекс Wordstat",
  "description": "Расширение Chrome для сбора семантики",
  "manifest_version": 2,
  "version": "0.1",
  "background": {
    "page": "background.html"
  },
  "icons": {
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "unlimitedStorage",
    "storage",
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://wordstat.yandex.ru/*",
        "https://direct.yandex.ru/*"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "scripts.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}