Skip to content

Instantly share code, notes, and snippets.

@zmarffy
Created December 30, 2020 23:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zmarffy/7faaa5f6df642dbcc47cc4ff26751c8c to your computer and use it in GitHub Desktop.
Save zmarffy/7faaa5f6df642dbcc47cc4ff26751c8c to your computer and use it in GitHub Desktop.
Redirect straight to source page when clicking on a Bing video link
// ==UserScript==
// @name Bing Video to Source Page
// @version 1.0
// @description redirect straight to source page when clicking on a Bing video link
// @author Zeke Marffy
// @match https://www.bing.com/videos/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
let e = document.querySelector("#mmvdp_meta_properties a");
if (e !== null) {
window.location.href = e.href
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment