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은(는) rainungert에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sorts your library and marks your VR/Move/Aim/Camera games. Also adds gameplay video to every game(single) page"입니다.

확장 프로그램 스크린샷

screenshot

PlayStation Store & Library - Enhanced 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}