One Piece Drop

Instantly notifies you when a new One Piece chapter is released

Vad är One Piece Drop?

One Piece Drop är en Chrome-tillägg utvecklad av mingli434, och dess huvudfunktion är "Instantly notifies you when a new One Piece chapter is released".

Ladda ner One Piece Drop-förlängningens CRX-fil

Ladda ner One Piece Drop-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn One Piece Drop One Piece Drop
ID fgkgokolnijjkifnbmplgkfpbfejenlp
Officiell webbadress https://chrome.google.com/webstore/detail/fgkgokolnijjkifnbmplgkfpbfejenlp
Beskrivning Instantly notifies you when a new One Piece chapter is released
Filstorlek 17.41 KB
Antal Installationer 142
Aktuell Version 1.2
Senast Uppdaterad 2018-07-19
Publiceringsdatum 2018-07-19
Utvecklare mingli434
Betalningssätt free
Stödda Språk 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"
    ]
}