Skip to content

Instantly share code, notes, and snippets.

@youpy
Created November 19, 2011 16:33
Show Gist options
  • Save youpy/1379026 to your computer and use it in GitHub Desktop.
Save youpy/1379026 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name cookpad.com: diaries feed
// @namespace http://d.hatena.ne.jp/youpy/
// @include http://cookpad.com/diary/list/*
// ==/UserScript==
var h1 = document.querySelector('h1.kitchen_title');
var image = document.createElement('img');
var a = document.createElement('a');
a.href = 'http://cookpad-diary.heroku.com/feed.xml?url=' + encodeURIComponent(location.href);
image.src = 'http://upload.wikimedia.org/wikipedia/commons/4/44/Feed.png';
a.appendChild(image);
h1.appendChild(a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment