One Piece Drop

Instantly notifies you when a new One Piece chapter is released

Cos'è One Piece Drop?

One Piece Drop è un'estensione di Chrome sviluppata da mingli434, e la sua funzione principale è "Instantly notifies you when a new One Piece chapter is released".

Scarica il file CRX dell'estensione One Piece Drop

Scarica i file di estensione One Piece Drop in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome One Piece Drop One Piece Drop
ID fgkgokolnijjkifnbmplgkfpbfejenlp
URL Ufficiale https://chrome.google.com/webstore/detail/fgkgokolnijjkifnbmplgkfpbfejenlp
Descrizione Instantly notifies you when a new One Piece chapter is released
Dimensione del File 17.41 KB
Conteggio Installazioni 142
Versione Corrente 1.2
Ultimo Aggiornamento 2018-07-19
Data di Pubblicazione 2018-07-19
Sviluppatore mingli434
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}