BetterMangaReader

Keep track of your manga, be notified of updates, and have a better reading experience

Apa itu BetterMangaReader?

BetterMangaReader adalah ekstensi Chrome yang dikembangkan oleh Jon Wolfe, dan fitur utamanya adalah "Keep track of your manga, be notified of updates, and have a better reading experience".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi BetterMangaReader

Unduh file ekstensi BetterMangaReader 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

                        Enjoy a better manga reading experience and with less hassle by letting us keep track of all your mangas and letting you know when each have been updated. BMR also displays every page of your manga onto one page so that you can just scroll downward to keep reading instead of going page to page, one by one..

This is still in beta, and as such is limited to only working on:

*MangaHere
*MangaTown
*MangaStream

During the beta, it's always helpful if you find any bugs to report them here under the issues tab on the Github page and maybe if you're feeling spry, knock out a couple of the fixes yourself and submit a pull request.                    

Informasi Dasar Ekstensi

Nama BetterMangaReader BetterMangaReader
ID gecohlfddhgfhkadmdghjjmijdpabmlp
URL Resmi https://chromewebstore.google.com/detail/bettermangareader/gecohlfddhgfhkadmdghjjmijdpabmlp
Deskripsi Keep track of your manga, be notified of updates, and have a better reading experience
Ukuran File 106 KB
Jumlah Instalasi 158
Versi Saat Ini 0.5.15
Terakhir Diperbarui 2016-08-24
Tanggal Publikasi 2016-08-24
Penilaian 4.71/5 Total 7 Penilaian
Pengembang Jon Wolfe
Tipe Pembayaran free
Situs Ekstensi https://github.com/JonathanWolfe/BetterMangaReader
URL Halaman Bantuan https://github.com/JonathanWolfe/BetterMangaReader/issues
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BetterMangaReader",
    "version": "0.5.15",
    "manifest_version": 2,
    "description": "Keep track of your manga, be notified of updates, and have a better reading experience",
    "homepage_url": "https:\/\/github.com\/JonathanWolfe\/BetterMangaReader",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "page": "html\/background.html",
        "persistent": true
    },
    "options_page": "html\/index.html",
    "browser_action": {
        "default_icon": "icons\/icon32.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.mangahere.co\/*",
                "*:\/\/*.mangastream.com\/*",
                "*:\/\/*.mangatown.com\/*",
                "*:\/\/*.readms.com\/*"
            ],
            "css": [
                "styles\/pure.css",
                "styles\/inject.css"
            ],
            "js": [
                "scripts\/vendor\/jquery.min.js",
                "scripts\/html-sanitize.js",
                "scripts\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/*.png"
    ]
}