NeonMob Enhancer

Enhancing NeonMob

NeonMob Enhancer란 무엇입니까?

NeonMob Enhancer은(는) chris에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhancing NeonMob"입니다.

확장 프로그램 스크린샷

screenshot

NeonMob Enhancer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension is not affiliated with NeonMob. 

It accesses the unsupported public API for set data, it might not work at times if a change happens to the API. As long as I'm using NeonMob, I'll notice any issues.

Information:
    - Currently if you are on a checklist for a set, it will display some hidden information about the set.

Features:
    - The % of packs claimed overall and the % of the free packs available claimed.
    - If a the free packs are sold out, it will display when the free packs sold out.
    - Total Print Count listed within the Pack Odds area for each of the Core Set Rarities, if a Core Rarity has more than one print, then it will also show the Per Print count.
    - Total Print Count of all Chase/Variant listed within the Pack Odds area 
    - Individual Print Counts are listed within the listing of the prints underneath the print name for Chases and Variants
    - Display the amount of days either the free packs sold out or the set went out of print since the released date

Version 0.1.3:
    - Remove temporary fix for an issue with the chase text not showing up within browsers using the background -webkit-linear-gradient

version 0.1.2:
    - Fix bug where the sold out dates weren't being shown and tweak the text shown

version 0.1.1:
    - add a temporary fix for an issue with the chase text not showing up within browsers using the background -webkit-linear-gradient

version 0.1.0:
    - If a set is unlimited with an infinite # of prints available, display ∞

version 0.0.15:
    - Changed displaying the print count for the Core Rarity Per/Total Prints. If they're the same, show just the Total
    - Chases/Variant Individual Print counts aren't surrounded by ()
    - Display the amount of days either the free packs sold out or the set went out of print since the released date
    - Made a lot of optimizations (It should now be faster)

version 0.0.14:
    - Fix issue if a set has more than 50 variant/chases that only the first 50 would show the print count.

version 0.0.13:
    - Individual Print Counts are listed within the listing of the prints underneath the print name for Chases and Variants
    - Fix the ready state so loading of the counts and % should now work 98% of the time

version 0.0.12:
    - Added Per Print Count listed within the Pack Odds area for each of the Core Set Rarities
    - Added Total Print Count of all Chase/Variant listed within the Pack Odds area (Due to the variety of print counts for each chase or variant print, it's impossible to list out ALL print counts)
    - Might have fixed the bug that would require a page refresh to display correctly
    - Permission update to not include ALL tabs but only the Active Tab for NeonMob (This should only show the permission now for only neonmob.com related sites, not all browsing history, Sorry if that caused confusion)

version 0.0.11:
    - Issue with extension manifest version and the actual package version. This puts it back in line

Version 0.0.10:
    - Removed features

Version 0.0.8:
    - Fix displaying to be the day of the month and not the day of the week for when the set sold out
    - Fix threshold percentage of when to stop displaying the free pack % and let NeonMob handle it

Version 0.0.7:
    - Fix for if a free pack % is higher than 70, let NeonMob show it

Version 0.0.6:
    - Fix for one more case for the status message area and fix for doubling output

Version 0.0.5:
    - Fix displaying the free packs if you still had packs to open

Version 0.0.4:
    - Added for when all free packs were sold out displaying the day they were sold out on                    

확장 프로그램 기본 정보

이름 NeonMob Enhancer NeonMob Enhancer
ID dpmhkfhmnmobphpegbmcpabinicapglf
공식 URL https://chromewebstore.google.com/detail/neonmob-enhancer/dpmhkfhmnmobphpegbmcpabinicapglf
설명 Enhancing NeonMob
파일 크기 181 KB
설치 횟수 57
현재 버전 0.1.3
최근 업데이트 2016-06-16
출시 날짜 2016-06-15
평점 5.00/5 총 4 개의 평점
개발자 chris
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/chrispelzer/neonmob-enhancer-extension
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NeonMob Enhancer",
    "description": "Enhancing NeonMob",
    "version": "0.1.3",
    "icons": {
        "16": "assets\/icon_16x16.png",
        "32": "assets\/icon_32x32.png",
        "48": "assets\/icon_48x48.png",
        "128": "assets\/icon_128x128.png"
    },
    "permissions": [
        "activeTab",
        "*:\/\/*.neonmob.com\/"
    ],
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "NeonMob Enhancer",
        "default_icon": {
            "19": "assets\/icon_19x19.png",
            "38": "assets\/icon_38x38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.neonmob.com\/*",
                "https:\/\/*.neonmob.com\/*"
            ],
            "css": [
                "css\/extension.css"
            ],
            "js": [
                "common.js",
                "client.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2,
    "web_accessible_resources": [
        "assets\/icon_38x38.png",
        "assets\/icon_19x19.png"
    ]
}