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」です。
拡張機能のスクリーンショット
PlayStation Store & Library - Enhanced拡張機能のCRXファイルをダウンロード
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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
}
} | |