Jisho MonoOboe

Jisho MonoOboe

Remember the words that you search the most on jisho.org

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Jisho MonoOboe",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Remember the words that you search the most on jisho.org",
  "author": "MyNameIsKir",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "browser_action": {
    "default_icon": {
      "48": "assets/icon.png"
    }
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.jisho.org/*"
      ],
      "css": [
        "styles/monooboe.css"
      ],
      "js": [
        "scripts/monooboe.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "pages/*"
  ]
}