NeonMob Enhancer

Enhancing NeonMob

ما هو NeonMob Enhancer؟

NeonMob Enhancer هو إضافة Chrome تم تطويرها بواسطة chris، والميزة الرئيسية لها هي "Enhancing NeonMob".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة NeonMob Enhancer

قم بتنزيل ملفات الامتداد NeonMob Enhancer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}