PlayStation Store & Library - Enhanced

PlayStation Store & Library - Enhanced

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

Merlin
Additional files are visible only to premium users

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