Neopets mail enhancer

This extension improves neopets inbox and view/reply messages

Neopets mail enhancerคืออะไร?

Neopets mail enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย julian neo extensions และคุณลักษณะหลักของมันคือ "This extension improves neopets inbox and view/reply messages"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Neopets mail enhancer

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

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

                        This extension was written because I was always having trouble remembering what I wrote to users or trying to make sense out of a response, especially when receiving a lot per day or getting a late reply.

What it does is store messages you read and send in your computer and display them in a nice chat-like interface where you can view the messages you exchanged in the past with a user.

To access the chat, just go to your neomail and click on the neo chat link next to Neogreetings. To load messages there, just read your neo mails as usual and they will be automatically added.

The extension does not automate any player activity, or provide data that would otherwise be inaccessible; it only helps to facilitate better searching, sorting, and organisation of your neomails.

You can view the project on https://github.com/juvian/NeoChat

This software is not endorsed by or affliated with Neopets.                    

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

ชื่อ Neopets mail enhancer Neopets mail enhancer
ID modhnfpkgooaagmmfncaondnlajjjmlf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/neopets-mail-enhancer/modhnfpkgooaagmmfncaondnlajjjmlf
คำอธิบาย This extension improves neopets inbox and view/reply messages
ขนาดไฟล์ 748 KB
จำนวนการติดตั้ง 1,188
เวอร์ชันปัจจุบัน 1.2.8
อัปเดตครั้งล่าสุด 2024-02-23
วันที่เผยแพร่ 2020-06-22
คะแนน 4.86/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา julian neo extensions
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "short_name": "Neopets Chat",
    "name": "Neopets mail enhancer",
    "description": "This extension improves neopets inbox and view\/reply messages",
    "version": "1.2.8",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.neopets.com\/neomessages.phtml?type=read_message&folder=Inbox&id=*"
            ],
            "css": [],
            "js": [
                "js\/jquery.js",
                "js\/smilies.js",
                "js\/moment.min.js",
                "js\/moment-timezone.min.js",
                "viewMail.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.neopets.com\/neomessages.phtml?folder=neochat"
            ],
            "css": [
                "css\/chat.css",
                "css\/sidebar.css",
                "css\/jquery.toastr.css",
                "fontAwesome\/css\/font-awesome.min.css"
            ],
            "js": [
                "js\/jquery.js",
                "js\/niceScroll.js",
                "js\/timeago.js",
                "js\/jquery.toastr.js",
                "js\/smilies.js",
                "js\/Template.js",
                "js\/utils.js",
                "js\/NeoChat.js",
                "js\/moment.min.js",
                "js\/moment-timezone.min.js",
                "viewChat.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.neopets.com\/neomessages.phtml*"
            ],
            "js": [
                "js\/jquery.js",
                "chatLink.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.neopets.com\/*"
            ],
            "js": [
                "contextMenu.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/www.neopets.com\/",
        "storage",
        "webRequest",
        "cookies",
        "downloads",
        "contextMenus",
        "unlimitedStorage"
    ],
    "icons": {
        "16": "images\/send.png",
        "128": "images\/send128.png"
    },
    "web_accessible_resources": [
        "template\/*",
        "fontAwesome\/fonts\/*",
        "images\/*",
        "changes.json"
    ],
    "background": {
        "scripts": [
            "js\/smilies.js",
            "background.js"
        ]
    }
}