PlayStation Web Store Enhancer

Adds game titles underneath the game icons and dark mode

Hvad er PlayStation Web Store Enhancer?

PlayStation Web Store Enhancer er en Chrome-udvidelse udviklet af naveedgol, og dens hovedfunktion er "Adds game titles underneath the game icons and dark mode".

Udvidelsesskærmbilleder

screenshot

Download PlayStation Web Store Enhancer-udvidelses-CRX-fil

Download PlayStation Web Store Enhancer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn PlayStation Web Store Enhancer PlayStation Web Store Enhancer
ID ojgghfcmdlmabkoomdckndndpdlapkhp
Officiel URL https://chromewebstore.google.com/detail/playstation-web-store-enh/ojgghfcmdlmabkoomdckndndpdlapkhp
Beskrivelse Adds game titles underneath the game icons and dark mode
Filstørrelse 60.83 KB
Antal Installationer 239
Nuværende Version 1.1
Senest Opdateret 2020-10-29
Udgivelsesdato 2020-10-28
Bedømmelse 4.40/5 Samlet 5 Bedømmelser
Udvikler naveedgol
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
}