PSN Profiles guide column

Adds a guide column to the games list with difficulty and hour from official guide to make deciding your next hunt easier.

¿Qué es PSN Profiles guide column?

PSN Profiles guide column es una extensión de Chrome desarrollada por IHS, y su función principal es "Adds a guide column to the games list with difficulty and hour from official guide to make deciding your next hunt easier.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión PSN Profiles guide column

Descarga archivos de extensión PSN Profiles guide column 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

                        Adds a new column with difficulty and hours from the featured guide to the games list to make deciding your next hunt easier.                    

Información Básica de la Extensión

Nombre PSN Profiles guide column PSN Profiles guide column
ID eaadcpcapokaenindcgkmgldikbiocee
URL Oficial https://chromewebstore.google.com/detail/psn-profiles-guide-column/eaadcpcapokaenindcgkmgldikbiocee
Descripción Adds a guide column to the games list with difficulty and hour from official guide to make deciding your next hunt easier.
Tamaño del Archivo 151 KB
Cantidad de Instalaciones 1,398
Versión Actual 1.3
Última Actualización 2023-03-12
Fecha de Publicación 2022-03-14
Calificación 5.00/5 Total de 8 Calificaciones
Desarrollador IHS
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PSN Profiles guide column",
    "description": "Adds a guide column to the games list with difficulty and hour from official guide to make deciding your next hunt easier.",
    "version": "1.3",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/psnprofiles.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "difficultyColumn.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "games.json"
            ],
            "matches": [
                "https:\/\/psnprofiles.com\/*"
            ]
        }
    ]
}