NeonMob Enhancer

Enhancing NeonMob

NeonMob Enhancer là gì?

NeonMob Enhancer là một tiện ích mở rộng Chrome được phát triển bởi chris, và tính năng chính của nó là "Enhancing NeonMob".

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

screenshot

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

Tải xuống các tệp mở rộng NeonMob Enhancer 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

                        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                    

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

Tên NeonMob Enhancer NeonMob Enhancer
ID dpmhkfhmnmobphpegbmcpabinicapglf
URL Chính Thức https://chromewebstore.google.com/detail/neonmob-enhancer/dpmhkfhmnmobphpegbmcpabinicapglf
Mô tả Enhancing NeonMob
Kích Thước Tệp 181 KB
Số Lần Cài Đặt 57
Phiên Bản Hiện Tại 0.1.3
Cập Nhật Lần Cuối 2016-06-16
Ngày Phát Hành 2016-06-15
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển chris
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/chrispelzer/neonmob-enhancer-extension
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}