Created
December 4, 2013 05:57
-
-
Save slightair/7783036 to your computer and use it in GitHub Desktop.
replace gazoreply.jp copy image url
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name http://gazoreply.jp/ | |
// @description replace gazoreply.jp copy image url | |
// @include http://gazoreply.jp/* | |
// @exclude http://gazoreply.jp/situation/* | |
// ==/UserScript== | |
window.addEventListener('load', function(){ | |
var imgURL = document.getElementById("main-photo-img").getAttribute('src'); | |
var clipboardButtonElement = document.getElementById("copy-clipboard-btn"); | |
clipboardButtonElement.setAttribute('data-img-url', imgURL); | |
}, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment