Neopets mail enhancer

This extension improves neopets inbox and view/reply messages

Neopets mail enhancer란 무엇입니까?

Neopets mail enhancer은(는) julian neo extensions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension improves neopets inbox and view/reply messages"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Neopets mail enhancer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        ]
    }
}