PlayStation Web Store Enhancer

Adds game titles underneath the game icons and dark mode

O que é PlayStation Web Store Enhancer?

PlayStation Web Store Enhancer é uma extensão do Chrome desenvolvida por naveedgol, e sua principal característica é "Adds game titles underneath the game icons and dark mode".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão PlayStation Web Store Enhancer

Baixe arquivos de extensão PlayStation Web Store Enhancer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome PlayStation Web Store Enhancer PlayStation Web Store Enhancer
ID ojgghfcmdlmabkoomdckndndpdlapkhp
URL Oficial https://chromewebstore.google.com/detail/playstation-web-store-enh/ojgghfcmdlmabkoomdckndndpdlapkhp
Descrição Adds game titles underneath the game icons and dark mode
Tamanho do Arquivo 60.83 KB
Contagem de Instalações 239
Versão Atual 1.1
Última Atualização 2020-10-29
Data de Publicação 2020-10-28
Classificação 4.40/5 Total de 5 Avaliações
Desenvolvedor naveedgol
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}