One Piece Drop

Instantly notifies you when a new One Piece chapter is released

Hvad er One Piece Drop?

One Piece Drop er en Chrome-udvidelse udviklet af mingli434, og dens hovedfunktion er "Instantly notifies you when a new One Piece chapter is released".

Download One Piece Drop-udvidelses-CRX-fil

Download One Piece Drop-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn One Piece Drop One Piece Drop
ID fgkgokolnijjkifnbmplgkfpbfejenlp
Officiel URL https://chrome.google.com/webstore/detail/fgkgokolnijjkifnbmplgkfpbfejenlp
Beskrivelse Instantly notifies you when a new One Piece chapter is released
Filstørrelse 17.41 KB
Antal Installationer 142
Nuværende Version 1.2
Senest Opdateret 2018-07-19
Udgivelsesdato 2018-07-19
Udvikler mingli434
Betalingsmetode free
Understøttede Sprog 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"
    ]
}