MAL Enhancer

Enhances MAL for a better user experience. Suggestions are welcome!

MAL Enhancerคืออะไร?

MAL Enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shaggyze และคุณลักษณะหลักของมันคือ "Enhances MAL for a better user experience. Suggestions are welcome!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MAL Enhancer

ดาวน์โหลดไฟล์ส่วนขยาย MAL Enhancer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Enhances MyAnimeList for a better user experience. Suggestions are welcome!

Force PC Desktop Mode
Higher resolution than the default desktop mode on mobile devices.

BBCode Extractor
Copy any about me (classic), post, message, comment, club description, or signature to BBCode.

BBCode Helper
Enables an editor while writing a message, forum post, blog post, club description, or editing your profile.

New Message History Design
Changes how the message history is shown.

Message drafts
Saves a draft (OFFLINE) of every message you have written, but never sent.

Anime Finder
Press CTRL+ENTER while writing a message, forum post, blog post, or editing your profile.

Improved Anime History (*incomplete)
Shows a branching timeline of the animes you've watched. (Find it on a profile under 'history')

Anime/Manga Roulette on lists
Discovery what to watch/read next.

Enable custom CSS on animelists/mangalists
Disabling this will force every animelist/mangalist to use the default style.

Blacklist user's custom CSS
Press the button in order to toggle this user's custom CSS.

Disable Privacy Policy
Removes Privacy Policy popup.

Disable Footer
Removes Footer from bottom of page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ MAL Enhancer MAL Enhancer
ID lhlbjaffbmnccljibbnphpcgemkecgca
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mal-enhancer/lhlbjaffbmnccljibbnphpcgemkecgca
คำอธิบาย Enhances MAL for a better user experience. Suggestions are welcome!
ขนาดไฟล์ 95.35 KB
จำนวนการติดตั้ง 137
เวอร์ชันปัจจุบัน 3.6.0
อัปเดตครั้งล่าสุด 2023-02-03
วันที่เผยแพร่ 2022-07-19
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา shaggyze
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/shaggyze/MAL-Enhancer
URL หน้าช่วยเหลือ https://myanimelist.net/forum/?topicid=2031419
ภาษาที่รองรับ en
manifest.json
{
    "author": "Alexander N & ShaggyZE",
    "name": "MAL Enhancer",
    "short_name": "MALENHC",
    "description": "Enhances MAL for a better user experience. Suggestions are welcome!",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "3.6.0",
    "manifest_version": 3,
    "host_permissions": [
        "*:\/\/*.myanimelist.net\/*"
    ],
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "style.css",
                "gitgraph.css"
            ],
            "js": [
                "jquery.js",
                "malenhc.js",
                "bbcodehelper.js",
                "bbcodeextracter.js",
                "gitgraph.min.js"
            ],
            "matches": [
                "https:\/\/myanimelist.net\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "logo128.png",
        "16": "logo16.png",
        "48": "logo48.png"
    },
    "action": {
        "default_popup": "options.html",
        "default_title": "MAL Enhancer Options"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "emoji\/*.json",
                "*.png",
                "style.css",
                "bbcodehelper.html",
                "animeRandomizer.html",
                "mangaRandomizer.html"
            ],
            "matches": [
                "https:\/\/myanimelist.net\/*"
            ]
        }
    ]
}