One Click JJ

One Click JJ

Open Bilibili shows in Bilibilijj with (almost) one click. No more frustrations squeezing your mouse cursor into the URL to append…

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_appName__",
  "short_name": "OCJJ",
  "description": "__MSG_appDesc__",
  "default_locale": "zh_CN",
  "version": "0.1.0",
  "browser_action": {
    "default_icon": "green.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.bilibili.com/",
        "http://www.bilibili.com/*"
      ],
      "js": [
        "jquery-3.1.1.min.js",
        "lodash.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "optional_permissions": [
    "tabs"
  ]
}