Skip to content

Instantly share code, notes, and snippets.

@Homlean
Created March 1, 2013 09:12
Show Gist options
  • Save Homlean/5063423 to your computer and use it in GitHub Desktop.
Save Homlean/5063423 to your computer and use it in GitHub Desktop.
chrome user script
// ==UserScript==
// @name 任意网址插入图片
// @namespace http://appxyz.com
// @version v1.0
// @include http://*/*
// ==/UserScript==
var img = document.createElement('img');
img.src= 'http://i.leica.cc/wp-content/uploads/2013/02/weixin.png';
document.querySelector('body').appendChild(img);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment