PlayStation Web Store Enhancer

Adds game titles underneath the game icons and dark mode

Was ist PlayStation Web Store Enhancer?

PlayStation Web Store Enhancer ist eine Chrome-Erweiterung, die von naveedgol entwickelt wurde, und ihr Hauptmerkmal ist "Adds game titles underneath the game icons and dark mode".

Erweiterungsscreenshots

screenshot

PlayStation Web Store Enhancer-Erweiterungs-CRX-Datei herunterladen

Laden Sie PlayStation Web Store Enhancer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name PlayStation Web Store Enhancer PlayStation Web Store Enhancer
ID ojgghfcmdlmabkoomdckndndpdlapkhp
Offizielle URL https://chromewebstore.google.com/detail/playstation-web-store-enh/ojgghfcmdlmabkoomdckndndpdlapkhp
Beschreibung Adds game titles underneath the game icons and dark mode
Dateigröße 60.83 KB
Installationsanzahl 239
Aktuelle Version 1.1
Letztes Update 2020-10-29
Veröffentlichungsdatum 2020-10-28
Bewertung 4.40/5 Insgesamt 5 Bewertungen
Entwickler naveedgol
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}