Examine source code of EasyNicoru

Inspect and view changes in EasyNicoru source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "EasyNicoru",
  "version": "1.1",
  "description": "コメント欄からコメントを押すだけでニコれる拡張機能",
  "content_scripts": [
    {
      "matches": [
        "https://www.nicovideo.jp/watch/*"
      ],
      "js": [
        "nicoru.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "48": "icons/easy_nicoru_48.png"
    },
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "48": "icons/easy_nicoru_48.png",
    "64": "icons/easy_nicoru_64.png",
    "128": "icons/easy_nicoru_128.png"
  },
  "web_accessible_resources": [
    "img/old_nicoru_mada.png",
    "img/old_nicoru_nicotta.png",
    "img/inyume.png"
  ],
  "permissions": [
    "storage"
  ]
}