Skip to content

Instantly share code, notes, and snippets.

@equinox79
Created June 9, 2011 04:03
Show Gist options
  • Save equinox79/1016034 to your computer and use it in GitHub Desktop.
Save equinox79/1016034 to your computer and use it in GitHub Desktop.
chrome extentionのブラウザアクションでアイコンクリックするとブコメページに飛ばすやつのbackground.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<script>
chrome.browserAction.onClicked.addListener(function(tab) {
chrome.windows.get(tab.windowId, function(window) {
if (window.focused) {
var jump_url = "http://b.hatena.ne.jp/entry/"+tab.url;
chrome.tabs.update(tab.id, {url: jump_url, selected: tab.selected}, null);
}
})
});
</script>
</head>
<body></body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment