One Piece Drop

Instantly notifies you when a new One Piece chapter is released

什么是One Piece Drop?

One Piece Drop是由mingli434开发的Chrome扩展程序,该扩展的主要功能是“Instantly notifies you when a new One Piece chapter is released”。

下载One Piece Drop扩展crx文件

下载One Piece Drop扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        One Piece Drop eliminates the need to refresh Jaimini's box every 5 seconds when waiting for the new One Piece chapter to drop. Get notified instantly the moment the chapter is uploaded!                    

扩展基本信息

名称 One Piece Drop One Piece Drop
ID fgkgokolnijjkifnbmplgkfpbfejenlp
官方URL https://chrome.google.com/webstore/detail/fgkgokolnijjkifnbmplgkfpbfejenlp
简介 Instantly notifies you when a new One Piece chapter is released
文件大小 17.41 KB
安装次数 142
当前版本 1.2
更新时间 2018-07-19
上架时间 2018-07-19
开发者 mingli434
付费类型 free
支持的语言 en
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"
    ]
}