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
官方網址 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"
    ]
}