MyMangaDex

Automatically update your MyAnimeList manga list when reading on MangaDex.

MyMangaDex là gì?

MyMangaDex là một tiện ích mở rộng Chrome được phát triển bởi Glagan, và tính năng chính của nó là "Automatically update your MyAnimeList manga list when reading on MangaDex.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng MyMangaDex

Tải xuống các tệp mở rộng MyMangaDex dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        You can find changelogs on Github: https://github.com/Glagan/MyMangaDex/releases

MyMangaDex sync what you read on MangaDex directly to your MyAnimeList !

MyMangaDex can also enhance your reading experience by adding features that can all be disabled if you don't like them:
* Highlights or hide older and higher chapters
* Highlights the last chapter you read and the next chapter
* Add a tooltip with the manga cover and the last 5 read chapters on every page that contain a list of titles.
* Informations about the MyAnimeList entry of a title on the title page
* Buttons to do quick action like starting or re-read a title
* Modal to edit all MyAnimeList informations of a title
* Update MangaDex status when needed, for example when you finish a manga, when you drop it or put it on hold
* Conditional update to avoid update MyAnimeList while trying a title
* Bigger MangaDex history (displayed in the /history page)

If you wish to start a MyAnimeList manga list, the extension also have a functionality that add an entry to MyAnimeList for every title you follow on MangaDex, with the last chapter you read as the current chapter !

If you are reading on different browsers or computers, you can enable online save and your save will be updated online, you will then only have to click one button to synchronize it when needed.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MyMangaDex MyMangaDex
ID ihejddjcdmdppiimegmknbcaiebklajl
URL Chính Thức https://chrome.google.com/webstore/detail/mymangadex/ihejddjcdmdppiimegmknbcaiebklajl
Mô tả Automatically update your MyAnimeList manga list when reading on MangaDex.
Kích Thước Tệp 62.19 KB
Số Lần Cài Đặt 797
Phiên Bản Hiện Tại 2.4.24
Cập Nhật Lần Cuối 2021-01-13
Ngày Phát Hành 2020-06-15
Đánh Giá 4.85/5 Tổng số 13 Đánh Giá
Nhà Phát Triển Glagan
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Glagan/MyMangaDex
URL Trang Trợ Giúp https://github.com/Glagan/MyMangaDex/issues
URL Trang Chính Sách Bảo Mật https://nikurasu.org/privacy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MyMangaDex",
    "version": "2.4.24",
    "author": "Glagan",
    "description": "Automatically update your MyAnimeList manga list when reading on MangaDex.",
    "permissions": [
        "https:\/\/myanimelist.net\/*",
        "https:\/\/*.mangadex.org\/*",
        "storage"
    ],
    "icons": {
        "48": "icons\/48.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "icons\/48.png",
            "96": "icons\/96.png",
            "128": "icons\/128.png"
        },
        "default_title": "MyMangaDex"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.mangadex.org\/follows",
                "https:\/\/*.mangadex.org\/follows\/",
                "https:\/\/*.mangadex.org\/follows\/manga\/0\/0\/*",
                "https:\/\/*.mangadex.org\/follows\/chapters\/*",
                "https:\/\/*.mangadex.org\/manga*",
                "https:\/\/*.mangadex.org\/titles*",
                "https:\/\/*.mangadex.org\/title*",
                "https:\/\/*.mangadex.org\/chapter\/*",
                "https:\/\/*.mangadex.org\/search*",
                "https:\/\/*.mangadex.org\/?page=search*",
                "https:\/\/*.mangadex.org\/?page=titles*",
                "https:\/\/*.mangadex.org\/featured",
                "https:\/\/*.mangadex.org\/group*",
                "https:\/\/*.mangadex.org\/genre*",
                "https:\/\/*.mangadex.org\/user*",
                "https:\/\/*.mangadex.org\/list*",
                "https:\/\/*.mangadex.org\/history"
            ],
            "js": [
                "scripts\/MyMangaDex.js"
            ],
            "css": [
                "third_party\/simpleNotification.min.css",
                "css\/mymangadex.css"
            ]
        }
    ]
}