wombley / Pinterest Bookmarklet

// ==UserScript==
// @name         Pinterest Bookmarklet
// @version      0.1
// @description  Pinterest Bookmarklet in Chrome Context Menu - doesn't seem to suffer from same problems as extension and far more lightweight - Tampermonkey on Chrome only
// @copyright    2018, wombley (https://openuserjs.org/users/wombley)
// @license      MIT
// @run-at       context-menu
// @grant        none

// ==/UserScript==

(function() {
    'use strict';
    console.log("Pinterest Bookmarklet Triggered");
    ((function(d){var e=d.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','//assets.pinterest.com/js/pinmarklet.js?r=' + Math.random()*99999999);d.body.appendChild(e)})(document));
})();