A better steam

Second release This extension has not been endorsed by Valve and is an unofficial enhancement of the Steam store when viewed in…

Qu'est-ce que A better steam ?

A better steam est une extension Chrome développée par Code Monkey Revenge, et sa fonction principale est "Second release This extension has not been endorsed by Valve and is an unofficial enhancement of the Steam store when viewed in…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension A better steam

Téléchargez les fichiers d'extension A better steam au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Second release

This extension has not been endorsed by Valve and is an unofficial enhancement of the Steam store when viewed in the Chrome store.  They idea was from TotalBiscuit who mocked up some Photoshop images of what he thought would be minor improvements of the Steam Store.  I thought they were good ideas so I implemented them.  The code right now is quite sloppy as I did it quickly in my free time, but seems to be function at this time.  If anyone has any more ideas on improving it or would like me to continue developing it you can contact me on twitter @MonkeyRevenge42

This initial release is very simple, it changes all games within the "New Release" section to show their actual release dates.  This is done by parsing the actual store page for its initial release and then caching the results (so it doesn't check every single game every time you refresh the store)

It also adds a "Show New Releases Only" button to the tab allowing you to completely hide old releases from the list.   Please let me know what you think.

[changelog]
* Changed the way I calculate the need of additional games to fill the segment when buffering is needed
* Removes duplicate entries so you won't see duplicates anymore
* Checking the "show new only" gets saved and is synced using google's syncing storage service.
* [KNOWN ISSUE] If you page down several pages and then click "show new only", it does not get buffered enough.  I know the problem and will fix it next week.                    

Informations de Base sur l'Extension

Nom A better steam A better steam
ID ilkgfeckmngnkhjehoceaeifhfkhkogm
URL Officiel https://chrome.google.com/webstore/detail/a-better-steam/ilkgfeckmngnkhjehoceaeifhfkhkogm
Description Second release This extension has not been endorsed by Valve and is an unofficial enhancement of the Steam store when viewed in…
Taille du Fichier 39.78 KB
Nombre d'Installations 120
Version Actuelle 1.2
Dernière Mise à Jour 2014-03-28
Date de Publication 2014-03-28
Évaluation 4.50/5 Total 6 Évaluations
Développeur Code Monkey Revenge
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "A better steam",
    "version": "1.2",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/store.steampowered.com\/*"
            ],
            "js": [
                "jquery.js",
                "injectS.js",
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}