One Piece Drop

Instantly notifies you when a new One Piece chapter is released

Co to jest One Piece Drop?

One Piece Drop to rozszerzenie Chrome opracowane przez mingli434, a jego główną funkcją jest „Instantly notifies you when a new One Piece chapter is released”.

Pobierz plik CRX rozszerzenia One Piece Drop

Pobierz pliki rozszerzeń One Piece Drop w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa One Piece Drop One Piece Drop
ID fgkgokolnijjkifnbmplgkfpbfejenlp
Oficjalny URL https://chrome.google.com/webstore/detail/fgkgokolnijjkifnbmplgkfpbfejenlp
Opis Instantly notifies you when a new One Piece chapter is released
Rozmiar pliku 17.41 KB
Liczba instalacji 142
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2018-07-19
Data Publikacji 2018-07-19
Deweloper mingli434
Typ Płatności free
Obsługiwane Języki 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"
    ]
}