Volley

Volley

Quick launch Volley App

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Volley",
  "description": "Quick launch Volley App",
  "version": "1.0.1",
  "permissions": [
    "tabs",
    "webNavigation",
    "storage",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_title": "Volley",
    "default_icon": {
      "16": "images/volleyicon16.png",
      "32": "images/volleyicon32.png",
      "48": "images/volleyicon48.png",
      "128": "images/volleyicon128.png"
    }
  },
  "icons": {
    "16": "images/volleyicon16.png",
    "32": "images/volleyicon32.png",
    "48": "images/volleyicon48.png",
    "128": "images/volleyicon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*",
        "http://localhost:8080/*"
      ],
      "css": [
        "content.css",
        "popup.css"
      ],
      "js": [
        "base64.js",
        "components/FloatBtn.js",
        "components/NotInProfilePage.js",
        "components/LoginPage.js",
        "components/Welcome.js",
        "components/Main.js",
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://*.linkedin.com/*",
    "http://localhost:8080/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.css",
        "svgs/*",
        "images/*",
        "css/*",
        "base64.js",
        "jwt-decode.js",
        "pages/*"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ]
    }
  ]
}