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
}