One Piece Drop

One Piece Drop

Instantly notifies you when a new One Piece chapter is released

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "One Piece Drop",
  "version": "1.2",
  "description": "Instantly notifies you when a new One Piece chapter is released",
  "manifest_version": 2,
  "icons": {
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.jaiminisbox.com/reader/"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "notifications"
  ]
}