Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name images tool insta
- // @namespace ale
- // @version 1
- // @description -
- // @author -
- // @require http://code.jquery.com/jquery-3.6.0.min.js
- // @include https://www.google.com/search?tbm=isch&q=*#imgrc=*
- // @match https://*instagram.com/*
- // @grant GM_setClipboard
- // @grant GM_download
- // @inject-into content
- // @run-at document-idle
- // ==/UserScript==
- $('body').on('click','img', displayContextMenu);
- function displayContextMenu(e) {
- e.preventDefault();
- currentTarget = e.target;
- var srcd = $(currentTarget).prop("src");
- GM_setClipboard(srcd);
- //GM_download({url: srcd,
- //name:"356.jpg",
- //saveAs: true, });
- }
- cntxtMn.click(function(e) {
- e.stopPropagation();
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement