Skip to content

Commit

Permalink
Merge pull request #283 from lexesjan/update_domain
Browse files Browse the repository at this point in the history
Update gogoanime player
  • Loading branch information
dabreadman authored Mar 27, 2022
2 parents d789651 + 89f4cb4 commit 0ce1376
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "typescript-aniskip-extension",
"extensionName": "Aniskip",
"version": "1.8.5",
"version": "1.8.6",
"description": "An extension which gives the option to skip anime opening and endings on various streaming sites",
"repository": "https://github.com/lexesjan/typescript-aniskip-extension",
"contributors": [
Expand Down
6 changes: 5 additions & 1 deletion src/pages/animepahe/metadata.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"pageUrls": ["*://animepahe.com/play/*/*"]
"pageUrls": [
"*://animepahe.com/play/*/*",
"*://animepahe.org/play/*/*",
"*://animepahe.ru/play/*/*"
]
}
1 change: 1 addition & 0 deletions src/pages/gogoanime/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"*://*.gogoanime.pe/*",
"*://*.gogoanime.sh/*",
"*://gogoanime.fi/*",
"*://gogoanime.gg/*",
"*://gogoanime.sh/*",
"*://gogoanime.so/*",
"*://gogoanime.wiki/*"
Expand Down
3 changes: 1 addition & 2 deletions src/players/crunchyroll/crunchyroll.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ export class Crunchyroll extends BasePlayer {
}

return super.getContainerHelper(
this.metadata.selectorStrings.default!.seekBarContainerSelectorString,
1
this.metadata.selectorStrings.default!.seekBarContainerSelectorString
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/players/crunchyroll/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"videoControlsContainerSelectorString": "velocity-controls-package",
"videoControlsContainerSelectorStringMobile": "vilosControlsContainer",
"injectMenusButtonsReferenceNodeSelectorString": "settingsControl",
"seekBarContainerSelectorString": "r-13awgt0 r-18u37iz r-1udh08x r-13qz1uu css-1dbjc4n",
"seekBarContainerSelectorString": "css-1dbjc4n r-13awgt0 r-18u37iz r-1udh08x r-13qz1uu",
"seekBarContainerSelectorStringMobile": "css-1dbjc4n r-13awgt0 r-18u37iz r-1udh08x r-13qz1uu"
}
}
Expand Down
4 changes: 4 additions & 0 deletions src/players/jw/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
"*://gogo-play.tv/*",
"*://gogoplay.io/*",
"*://gogoplay1.com/*",
"*://gogoplay4.com/*",
"*://gogoplay5.com/*",
"*://kimanime.ru/AnimeIframe/*",
"*://mcloud.to/*",
"*://mcloud2.to/*",
Expand All @@ -18,13 +20,15 @@
"*://sbembed.com/*",
"*://sbplay.org/*",
"*://sbplay2.com/*",
"*://sbplay2.xyz/*",
"*://sbvideo.net/*",
"*://streamani.net/*",
"*://streamsb.net/*",
"*://videovard.sx/*",
"*://vidstream.pro/*",
"*://vidstreamingcdn.com/*",
"*://vidstreamz.online/*",
"*://vizcloud.xyz/*",
"*://vizcloud2.online/*",
"*://watchsb.com/*"
],
Expand Down
9 changes: 6 additions & 3 deletions src/players/jw/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ $vidstream-hover-button-colour: #e50914;

&--vidstream,
&--vidstreamz,
&--vizcloud2 {
&--vizcloud2,
&--vizcloud {
&:hover > * {
color: $vidstream-hover-button-colour;
border-color: $vidstream-hover-button-colour;
Expand All @@ -65,7 +66,7 @@ $vidstream-hover-button-colour: #e50914;
}

&-button {
&--jw:not(&--vidstream, &--vidstreamz, &--vizcloud2, &--mcloud) {
&--jw:not(&--vidstream, &--vidstreamz, &--vizcloud2, &--vizcloud, &--mcloud) {
bottom: 5.5em;
}

Expand All @@ -79,6 +80,7 @@ $vidstream-hover-button-colour: #e50914;
&--jw#{&}--vidstream.fullscreen,
&--jw#{&}--vidstreamz.fullscreen,
&--jw#{&}--vizcloud2.fullscreen,
&--jw#{&}--vizcloud.fullscreen,
&--jw#{&}--mcloud.fullscreen {
@media (min-width: common.$xl) {
bottom: 6em;
Expand All @@ -92,7 +94,7 @@ $vidstream-hover-button-colour: #e50914;
}

.menus {
&--jw:not(&--vidstream, &--vidstreamz, &--vizcloud2, &--mcloud) {
&--jw:not(&--vidstream, &--vidstreamz, &--vizcloud2, &--vizcloud, &--mcloud) {
bottom: 6em;

@media (min-width: common.$md) {
Expand All @@ -114,6 +116,7 @@ $vidstream-hover-button-colour: #e50914;
&--jw#{&}--vidstream.fullscreen,
&--jw#{&}--vidstreamz.fullscreen,
&--jw#{&}--vizcloud2.fullscreen,
&--jw#{&}--vizcloud.fullscreen,
&--jw#{&}--mcloud.fullscreen {
@media (min-width: common.$xl) {
bottom: 10em;
Expand Down

0 comments on commit 0ce1376

Please sign in to comment.