Infamous Gangsters Enhancement Suite

A selection of tools to make your Infamous Gangsters experience easier, safer and more fun.

¿Qué es Infamous Gangsters Enhancement Suite?

Infamous Gangsters Enhancement Suite es una extensión de Chrome desarrollada por http://www.igenhancementsuite.com, y su función principal es "A selection of tools to make your Infamous Gangsters experience easier, safer and more fun.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Infamous Gangsters Enhancement Suite

Descarga archivos de extensión Infamous Gangsters Enhancement Suite en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        The IG Enhancement Suite was born out of the frustration at the lack of updates to the online mafia roleplaying game Infamous Gangsters. We decided that we would release a selection of tools to make playing IG more fun by removing a lot of the rough edges and providing more information about what is happening behind the scenes.

The following features are currently implemented:

 - Adds an optional `content blocker` mode which stops images being used to track your accounts through inheritance
 - Tracks changes to bank and game cash every 10 minutes (up to a total of 30 entries)
 - Adds a new circulating money field to the statistics page which shows the money currently on hand / the quick trade / sports bets
 - Tracks the time at which a player was first seen on the statistics
 - Now tracks 75 kills instead of 25
 - Displays the estimated number of OCs remaining until you rank up
 - The kill page captcha is now 3x as big
 - The kill page search now allows username search by both numbers and letters
 - The kill page captcha input now automatically uppercases all input
 - The kill page captcha input is now cleared automatically on page load instead of retaining the previous captcha
 - The kill page hours field is now automatically set to 23 hours
 - Adds a new Bullets field to the view profile page which shows the number of bullets (and the points cost) required to kill that user
 - Adds a profile preview hover (complete with bullets required) to all viewprofile links
 - Adds Send Message, Crew Profile, Send Money, Send Points and Presearch quick links to the profile preview hover
 - Adds a Copy Name function to the profile preview hover
 - The find user page now shows Status and Rank next to player names
 - Adds a tooltip to forum post creation with default content and titles for Crew OC, Normal OC, Need BG and Drop BG topics
 - Adds a colour coded key to the users online page
 - Adds a button to the crimes page which checks all of the none-special crime checkboxes
 - Tracks changes to player money every 10 minutes (up to a total of 30 entries)
 - Shows the difference in player money within the last 10 minutes directly below player money
 - Tracks changes to player points every 30 seconds (up to a total of 100 entries)
 - Shows the player their (near real-time) points within the sidebar below the player money
- Allow the player to commit a GTA from the sidebar when available
- Show crew OC topics in bold on the main game forum

This extension is fully open-source, which may be found here (along with support services): https://github.com/InfamousGangstersEnhancementSuite/IG-Enhancement-Suite/                    

Información Básica de la Extensión

Nombre Infamous Gangsters Enhancement Suite Infamous Gangsters Enhancement Suite
ID ikooobmdlijnnabcahngfnogcaohaikb
URL Oficial https://chrome.google.com/webstore/detail/infamous-gangsters-enhanc/ikooobmdlijnnabcahngfnogcaohaikb
Descripción A selection of tools to make your Infamous Gangsters experience easier, safer and more fun.
Tamaño del Archivo 61.31 KB
Cantidad de Instalaciones 131
Versión Actual 3.0.0
Última Actualización 2017-03-07
Fecha de Publicación 2017-03-07
Calificación 4.60/5 Total de 10 Calificaciones
Desarrollador http://www.igenhancementsuite.com
Tipo de Pago free
Sitio Web de la Extensión http://www.igenhancementsuite.com/
URL de la Página de Política de Privacidad https://github.com/InfamousGangstersEnhancementSuite/IG-Enhancement-Suite/blob/master/README.md
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Infamous Gangsters Enhancement Suite",
    "short_name": "IGES",
    "description": "A selection of tools to make your Infamous Gangsters experience easier, safer and more fun.",
    "version": "3.0.0",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "src\/core\/init.js",
            "src\/core\/storage.js",
            "src\/core\/format.js",
            "src\/core\/url.js",
            "src\/background\/contentblock.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.infamousgangsters.com\/*",
                "https:\/\/infamousgangsters.com\/*"
            ],
            "js": [
                "src\/vendor\/jquery\/jquery-3.1.1.js",
                "src\/core\/init.js",
                "src\/core\/storage.js",
                "src\/core\/format.js",
                "src\/core\/url.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.infamousgangsters.com\/*",
                "https:\/\/infamousgangsters.com\/*"
            ],
            "js": [
                "src\/page\/base.js",
                "src\/page\/global.js",
                "src\/page\/bank.js",
                "src\/page\/crimes.js",
                "src\/page\/find.js",
                "src\/page\/igforum.js",
                "src\/page\/kill.js",
                "src\/page\/points.js",
                "src\/page\/stats.js",
                "src\/page\/usersonline.js",
                "src\/page\/viewprofile.js",
                "src\/iges.js"
            ],
            "css": [
                "src\/css\/overrides.css",
                "src\/css\/iges.css"
            ]
        }
    ],
    "options_page": "src\/options\/options.html",
    "web_accessible_resources": [
        "src\/image\/*"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}