One Piece Drop

Instantly notifies you when a new One Piece chapter is released

Qu'est-ce que One Piece Drop ?

One Piece Drop est une extension Chrome développée par mingli434, et sa fonction principale est "Instantly notifies you when a new One Piece chapter is released".

Télécharger le fichier CRX de l'extension One Piece Drop

Téléchargez les fichiers d'extension One Piece Drop au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom One Piece Drop One Piece Drop
ID fgkgokolnijjkifnbmplgkfpbfejenlp
URL Officiel https://chrome.google.com/webstore/detail/fgkgokolnijjkifnbmplgkfpbfejenlp
Description Instantly notifies you when a new One Piece chapter is released
Taille du Fichier 17.41 KB
Nombre d'Installations 142
Version Actuelle 1.2
Dernière Mise à Jour 2018-07-19
Date de Publication 2018-07-19
Développeur mingli434
Type de Paiement free
Langues Prises en Charge 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"
    ]
}