Skip to content

Commit

Permalink
added custom domain (less ads)
Browse files Browse the repository at this point in the history
  • Loading branch information
avramovic committed Dec 3, 2024
1 parent a52a470 commit d612af0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"manifest_version": 3,
"name": "IMDbPlay",
"version": "1.1.2",
"description": "Play movies and TV shows directly from IMDb",
"version": "1.2",
"description": "Play movies and TV shows directly from IMDb. Now with less ads!",
"host_permissions": [
"https://www.imdb.com/title/tt*"
],
Expand Down
2 changes: 1 addition & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const observer = new MutationObserver(() => {
const pathSegments = window.location.pathname.split('/').filter(segment => segment);
let imdb_id = pathSegments[1];
let media_type = document.querySelector('meta[property="og:type"]')?.content;
let base_url = 'https://vidsrc.xyz/embed';
let base_url = 'https://proxy.garageband.rocks/embed';

let video_url = base_url + '/movie/' + imdb_id;
if (media_type === 'video.tv_show') {
Expand Down

0 comments on commit d612af0

Please sign in to comment.