Letterboxd x Google

Letterboxd x Google

Adding a Letterboxd link next to imdb Google search results lol

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Letterboxd x Google",
  "version": "0.0.1",
  "description": "Adding a Letterboxd link next to imdb Google search results lol",
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/styles.css"
      ],
      "matches": [
        "https://www.google.com/search*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [],
  "permissions": [],
  "icons": {
    "16": "img/icon-16.png",
    "32": "img/icon-32.png",
    "48": "img/icon-48.png",
    "64": "img/icon-64.png",
    "128": "img/icon-128.png"
  },
  "manifest_version": 3
}