One Piece Drop

Instantly notifies you when a new One Piece chapter is released

Apa itu One Piece Drop?

One Piece Drop adalah ekstensi Chrome yang dikembangkan oleh mingli434, dan fitur utamanya adalah "Instantly notifies you when a new One Piece chapter is released".

Unduh Berkas CRX Ekstensi One Piece Drop

Unduh file ekstensi One Piece Drop dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama One Piece Drop One Piece Drop
ID fgkgokolnijjkifnbmplgkfpbfejenlp
URL Resmi https://chrome.google.com/webstore/detail/fgkgokolnijjkifnbmplgkfpbfejenlp
Deskripsi Instantly notifies you when a new One Piece chapter is released
Ukuran File 17.41 KB
Jumlah Instalasi 142
Versi Saat Ini 1.2
Terakhir Diperbarui 2018-07-19
Tanggal Publikasi 2018-07-19
Pengembang mingli434
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}