Oracle Signup Bypass

Download from Oracle videos without signup.

目前為 2021-08-07 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Oracle Signup Bypass
// @namespace   Violentmonkey Scripts
// @match       https://*.oracle.com/*
// @grant       none
// @license      MIT
// @version     1.0
// @author      - CypherpunkSamurai
// @description        Download from Oracle videos without signup.
// ==/UserScript==

// This removes the disabled-class from the download links
function remove_disable(e) {
  e.classList = ["license-link", "icn-download"];  
}

document.querySelectorAll(".otable-w2 .license-link").forEach(remove_disable);