PlayStation Store & Library - Enhanced

Sorts your library and marks your VR/Move/Aim/Camera games. Also adds gameplay video to every game(single) page

Τι είναι το PlayStation Store & Library - Enhanced;

Το PlayStation Store & Library - Enhanced είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rainungert, και η κύρια λειτουργία του είναι "Sorts your library and marks your VR/Move/Aim/Camera games. Also adds gameplay video to every game(single) page".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης PlayStation Store & Library - Enhanced

Λήψη αρχείων επέκτασης PlayStation Store & Library - Enhanced σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Made this extension only cuz I needed it myself. Its wonky and rough edged, so, be surprised :D !

Got tired of going thru my game library and checking which ones are Virtual Reality games or Camera/Move enabled.

This extension does:

* Scan all your PS games on https://library.playstation.com and will mark games that are: VR/Move/Aim/Camera 
* Scans all games on PlayStation Store and marks games that are: VR/Move/Aim/Camera
* Adds gameplay video from youtube to every game page                    

Βασικές Πληροφορίες Επέκτασης

Όνομα PlayStation Store & Library - Enhanced PlayStation Store & Library - Enhanced
ID pbncgeiaoekidiljdbngikojhaekfdkc
Επίσημο URL https://chromewebstore.google.com/detail/playstation-store-library/pbncgeiaoekidiljdbngikojhaekfdkc
Περιγραφή Sorts your library and marks your VR/Move/Aim/Camera games. Also adds gameplay video to every game(single) page
Μέγεθος Αρχείου 233 KB
Αριθμός Εγκαταστάσεων 91
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2022-08-07
Ημερομηνία Δημοσίευσης 2021-12-02
Αξιολόγηση 1.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής rainungert
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PlayStation Store & Library - Enhanced",
    "description": "Sorts your library and marks your VR\/Move\/Aim\/Camera games. Also adds gameplay video to every game(single) page",
    "version": "0.0.1",
    "web_accessible_resources": [
        "loading.gif",
        "img\/vr.png",
        "img\/move.png",
        "img\/aim.png",
        "img\/camera.png"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Click Me"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "https:\/\/store.playstation.com\/*",
        "https:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "contentscript.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "bg.js",
            "jquery-3.5.1.min.js"
        ],
        "persistent": true
    }
}