Skip to content

Commit

Permalink
Merge pull request #297 from ijs77/patch-4
Browse files Browse the repository at this point in the history
Update bestialitysextaboo.net.js
  • Loading branch information
OshekharO authored Oct 24, 2024
2 parents 0272367 + 5d4b5bc commit d90e2fe
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions repo/bestialitysextaboo.net.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==MiruExtension==
// @name BestialitySexTaboo
// @version v0.0.1
// @version v0.0.2
// @author javxsub.com
// @lang en
// @license MIT
Expand Down Expand Up @@ -89,8 +89,9 @@ if (page == 1) {
const strippedpath = url.replace(/^(https?:\/\/)?([^\/]+)(\/.*)?/, '$3');
const res = await this.request(strippedpath);
const title = await this.querySelector(res, 'h1').text;
const cover = await this.querySelector(res, 'meta[property="og:image"]').getAttributeText("content");
const desc = await this.querySelector(res, 'div.content-info:nth-child(5) > span').text;
const covst = await this.querySelector(res, 'img[alt="Thumb 1"]').getAttributeText("src");
const cover = await covst.match(/.*\//)+"player.jpg";
const desc = await this.querySelector(res, 'div.content-info > span').text;
const user = await this.querySelector(res, 'div.content-info > a > strong').text;
//const video = await this.querySelector(res, 'source[type="video\/mp4"]').getAttributeText("src");
const videos = await this.querySelector(res, 'video[id="player-fluid"]').innerHTML;
Expand All @@ -109,7 +110,7 @@ if (page == 1) {

return {
title: title.trim(),
cover: cover.match(/.*\//)+"player.jpg",
cover: cover,
desc,
episodes: [
{
Expand Down

0 comments on commit d90e2fe

Please sign in to comment.