Overseerr Assistant Reborn Firefox

Examine source code of Overseerr Assistant Reborn

By: Felipe
Inspect and view changes in Overseerr Assistant Reborn source codes across current and past versions
Please login to examine the extension's source code.
manifest.json
{
  "name": "Overseerr Assistant Reborn",
  "version": "1.7.6",
  "description": "Browser extension for Overseerr that embeds buttons into IMDb and TMDB web pages to easily request movies and tv shows.",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.themoviedb.org/*",
    "*://themoviedb.org/*",
    "*://*.imdb.com/*",
    "*://imdb.com/*",
    "*://*.allocine.fr/*",
    "*://allocine.fr/*",
    "*://*.senscritique.com/*",
    "*://senscritique.com/*",
    "*://*.filmow.com/*",
    "*://filmow.com/*",
    "*://*.thetvdb.com/*",
    "*://thetvdb.com/*",
    "*://*.letterboxd.com/*",
    "*://letterboxd.com/*",
    "*://*.rottentomatoes.com/*",
    "*://rottentomatoes.com/*",
    "*://*.plex.tv/*",
    "*://plex.tv/*",
    "*://*.justwatch.com/*",
    "*://justwatch.com/*",
    "*://*.trakt.tv/*",
    "*://trakt.tv/*",
    "*://*.taste.io/*",
    "*://taste.io/*",
    "http://*/",
    "https://*/"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon.png",
      "32": "images/icon.png",
      "48": "images/icon.png",
      "128": "images/icon.png"
    }
  },
  "icons": {
    "16": "images/icon.png",
    "32": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.themoviedb.org/movie/*",
        "https://www.themoviedb.org/tv/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery-3.5.1.min.js",
        "js/storage.js",
        "js/overseerr-container.js",
        "js/content-scripts/tmdb.js"
      ]
    },
    {
      "matches": [
        "https://www.imdb.com/title/*",
        "https://www.imdb.com/*/title/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery-3.5.1.min.js",
        "js/storage.js",
        "js/overseerr-container.js",
        "js/content-scripts/imdb.js"
      ]
    },
    {
      "matches": [
        "https://www.allocine.fr/film/*",
        "https://www.allocine.fr/series/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery-3.5.1.min.js",
        "js/storage.js",
        "js/overseerr-container.js",
        "js/content-scripts/allocine.js"
      ]
    },
    {
      "matches": [
        "https://www.senscritique.com/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery-3.5.1.min.js",
        "js/storage.js",
        "js/overseerr-container.js",
        "js/content-scripts/senscritique.js"
      ]
    },
    {
      "matches": [
        "https://filmow.com/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery-3.5.1.min.js",
        "js/storage.js",
        "js/overseerr-container.js",
        "js/content-scripts/filmow.js"
      ]
    },
    {
      "matches": [
        "https://thetvdb.com/movies/*",
        "https://thetvdb.com/series/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery-3.5.1.min.js",
        "js/storage.js",
        "js/overseerr-container.js",
        "js/content-scripts/tvdb.js"
      ]
    },
    {
      "matches": [
        "https://letterboxd.com/film/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery-3.5.1.min.js",
        "js/storage.js",
        "js/overseerr-container.js",
        "js/content-scripts/letterboxd.js"
      ]
    },
    {
      "matches": [
        "https://www.rottentomatoes.com/m/*",
        "https://www.rottentomatoes.com/tv/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery-3.5.1.min.js",
        "js/storage.js",
        "js/overseerr-container.js",
        "js/content-scripts/rottentomatoes.js"
      ]
    },
    {
      "matches": [
        "https://app.plex.tv/desktop/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery-3.5.1.min.js",
        "js/storage.js",
        "js/overseerr-container.js",
        "js/content-scripts/plex.js"
      ]
    },
    {
      "matches": [
        "https://www.justwatch.com/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery-3.5.1.min.js",
        "js/storage.js",
        "js/overseerr-container.js",
        "js/content-scripts/justwatch.js"
      ]
    },
    {
      "matches": [
        "https://trakt.tv/movies/*",
        "https://trakt.tv/shows/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery-3.5.1.min.js",
        "js/storage.js",
        "js/overseerr-container.js",
        "js/content-scripts/trakt.js"
      ]
    },
    {
      "matches": [
        "https://www.taste.io/movies/*",
        "https://www.taste.io/tv/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery-3.5.1.min.js",
        "js/storage.js",
        "js/overseerr-container.js",
        "js/content-scripts/taste.js"
      ]
    }
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js",
      "js/storage.js"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/icon.png",
        "css/style.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3,
  "browser_specific_settings": {
    "gecko": {
      "id": "overseerr-assistant@darklyn.org",
      "strict_min_version": "126.0"
    },
    "gecko_android": {
      "id": "overseerr-assistant@darklyn.org",
      "strict_min_version": "126.0"
    }
  }
}

Best Overseerr Assistant Reborn Alternatives

Here are some Firefox add-ons that are similar to Overseerr Assistant Reborn: