NeonMob Enhancer

Enhancing NeonMob

Co to jest NeonMob Enhancer?

NeonMob Enhancer to rozszerzenie Chrome opracowane przez chris, a jego główną funkcją jest „Enhancing NeonMob”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia NeonMob Enhancer

Pobierz pliki rozszerzeń NeonMob Enhancer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa NeonMob Enhancer NeonMob Enhancer
ID dpmhkfhmnmobphpegbmcpabinicapglf
Oficjalny URL https://chromewebstore.google.com/detail/neonmob-enhancer/dpmhkfhmnmobphpegbmcpabinicapglf
Opis Enhancing NeonMob
Rozmiar pliku 181 KB
Liczba instalacji 57
Aktualna Wersja 0.1.3
Ostatnia Aktualizacja 2016-06-16
Data Publikacji 2016-06-15
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper chris
Typ Płatności free
Strona Rozszerzenia https://github.com/chrispelzer/neonmob-enhancer-extension
Obsługiwane Języki 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"
    ]
}