PlayStation Web Store Enhancer

Adds game titles underneath the game icons and dark mode

Что такое PlayStation Web Store Enhancer?

PlayStation Web Store Enhancer - это расширение Chrome, разработанное naveedgol, и его основная функция - "Adds game titles underneath the game icons and dark mode".

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

screenshot

Скачать файл CRX расширения PlayStation Web Store Enhancer

Скачайте файлы расширений PlayStation Web Store Enhancer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Enhance the PlayStation web store experience with a dark mode and visible titles under game tiles.                    

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

Название PlayStation Web Store Enhancer PlayStation Web Store Enhancer
ID ojgghfcmdlmabkoomdckndndpdlapkhp
Официальный URL https://chromewebstore.google.com/detail/playstation-web-store-enh/ojgghfcmdlmabkoomdckndndpdlapkhp
Описание Adds game titles underneath the game icons and dark mode
Размер файла 60.83 KB
Количество установок 239
Текущая Версия 1.1
Последнее Обновление 2020-10-29
Дата публикации 2020-10-28
Рейтинг 4.40/5 Всего 5 оценок
Разработчик naveedgol
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PlayStation Web Store Enhancer",
    "short_name": "PS Store Enhancer",
    "version": "1.1",
    "description": "Adds game titles underneath the game icons and dark mode",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/store.playstation.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "dark.css"
    ],
    "manifest_version": 2
}