61 lines
2.1 KiB
JavaScript
61 lines
2.1 KiB
JavaScript
// ==UserScript==
|
|
// @name Cyber Downloader ADD
|
|
// @namespace http://tampermonkey.net/
|
|
// @version 0.1
|
|
// @description try to take over the world!
|
|
// @author You
|
|
// @require http://code.jquery.com/jquery-latest.js
|
|
// @require https://rawgit.com/notifyjs/notifyjs/master/dist/notify.js
|
|
// @match https://www.youtube.com/watch?v=*
|
|
// @grant none
|
|
// ==/UserScript==
|
|
|
|
var css = `
|
|
<style>.notifyjs-corner {
|
|
top: 57px !important;
|
|
z-index: 99999;
|
|
}</style>
|
|
<button id="cb3_send" style="
|
|
background-color: transparent;
|
|
color: #FFF;
|
|
border: none;
|
|
cursor: pointer;
|
|
"><yt-iconx style=" display: inline-flex;
|
|
-ms-flex-align: center;
|
|
transform: rotate(180deg);
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
-ms-flex-pack: center;
|
|
-webkit-justify-content: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
vertical-align: middle;
|
|
fill: var(--iron-icon-fill-color, currentcolor);
|
|
stroke: none;
|
|
width: var(--iron-icon-width, 24px);
|
|
height: var(--iron-icon-height, 24px);
|
|
margin-right: var(--iron-icon_-_margin-right);
|
|
width: var(--iron-icon_-_width, var(--iron-icon-width, 24px));
|
|
height: var(--iron-icon_-_height, var(--iron-icon-height, 24px));
|
|
margin-bottom: var(--iron-icon_-_margin-bottom);" class="style-scope ytd-button-renderer"><svg viewBox="0 0 24 24" preserveAspectRatio="xMidYMid meet" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g class="style-scope yt-icon">
|
|
<path d="M9 16h6v-6h4l-7-7-7 7h4zm-4 2h14v2H5z" class="style-scope yt-icon"></path>
|
|
</g></svg>
|
|
</yt-iconx> Send To Cyber</button>
|
|
`;
|
|
|
|
(function() {
|
|
'use strict';
|
|
var s = jQuery.noConflict();
|
|
console.log('loaded');
|
|
setTimeout(function(){
|
|
s('#end').prepend(css);
|
|
},1000);
|
|
// Your code here...
|
|
s('body').delegate('#cb3_send','click',function(){
|
|
var sy = window.location;
|
|
s.notify("Start Download", "info");
|
|
s.post( "http://127.0.0.1:54167/download?url="+encodeURI(sy),function() {
|
|
|
|
});
|
|
});
|
|
})(); |