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.

Что такое PSN Profiles guide column?

PSN Profiles guide column - это расширение Chrome, разработанное IHS, и его основная функция - "Adds a guide column to the games list with difficulty and hour from official guide to make deciding your next hunt easier.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения PSN Profiles guide column

Скачайте файлы расширений PSN Profiles guide column в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название PSN Profiles guide column PSN Profiles guide column
ID eaadcpcapokaenindcgkmgldikbiocee
Официальный URL https://chromewebstore.google.com/detail/psn-profiles-guide-column/eaadcpcapokaenindcgkmgldikbiocee
Описание Adds a guide column to the games list with difficulty and hour from official guide to make deciding your next hunt easier.
Размер файла 151 KB
Количество установок 1,398
Текущая Версия 1.3
Последнее Обновление 2023-03-12
Дата публикации 2022-03-14
Рейтинг 5.00/5 Всего 8 оценок
Разработчик IHS
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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\/*"
            ]
        }
    ]
}