Add tag discription system

Add tag discription system

When you hover the mouse cursor over a tag on Wikidot, the description of the tag list on SCP-JP, SCP-EN and SCP-CN is displayed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_Name__",
  "version": "3.0.3",
  "description": "__MSG_Description__",
  "author": "RTa_technology",
  "homepage_url": "https://github.com/RTa-technology/add-tag-description-system",
  "default_locale": "ja",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.scp-wiki.net/*",
        "http://*.wikidot.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_title": "system"
  },
  "icons": {
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "options_page": "option/option.html"
}