Skip to content

Commit

Permalink
feat(config): skip disney plus intro
Browse files Browse the repository at this point in the history
Signed-off-by: Roberto Bianchi <roberto.bianchi@spendesk.com>
  • Loading branch information
rozzilla committed Jan 9, 2025
1 parent 4fb87a9 commit 726fd8a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Description 🔭

Automatically skip Netflix series intro.
Automatically skip Netflix and DisneyPlus series intro.

## Ideas, bug, questions 📫

Expand Down
10 changes: 3 additions & 7 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
{
"manifest_version": 3,
"name": "Skip series intro",
"description": "Skip series intro allows to automatically skip the intro of the series.",
"description": "Skip series intro allows to automatically skip the intro of the series on Netflix and Disney Plus.",
"version": "1.0.2",
"content_scripts": [
{
"matches": [
"https://*/*"
],
"matches": ["https://*/*"],
"run_at": "document_start",
"js": [
"src/scripts/content.js"
]
"js": ["src/scripts/content.js"]
}
],
"action": {
Expand Down
1 change: 1 addition & 0 deletions src/scripts/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const elements = [
'[data-uia="next-episode-seamless-button"]',
'[data-uia="interrupt-autoplay-continue"]',
".watch-video--skip-content-button",
'.skip__button.body-copy'
];

setInterval(() => {
Expand Down

0 comments on commit 726fd8a

Please sign in to comment.