Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Replace video url
- // @namespace http://tampermonkey.net/
- // @version v1.0
- // @description try to take over the world!
- // @author You
- // @match https://www.homemoviestube.com/videos/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
- // @grant none
- // ==/UserScript==
- (function (){
- 'use strict';
- const originalSrcDescriptor = Object.getOwnPropertyDescriptor(HTMLMediaElement.prototype, 'src');
- if (originalSrcDescriptor && originalSrcDescriptor.set) {
- Object.defineProperty(HTMLMediaElement.prototype, 'src', {
- set: function(value) {
- if (typeof value === 'string' && value.includes('www.homemoviestube.com')) {
- value = value.replace('www.homemoviestube.com', 'media.homemoviestube.com');
- }
- return originalSrcDescriptor.set.call(this, value);
- },
- get: originalSrcDescriptor.get
- });
- }
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement