Created
June 9, 2011 04:03
-
-
Save equinox79/1016034 to your computer and use it in GitHub Desktop.
chrome extentionのブラウザアクションでアイコンクリックするとブコメページに飛ばすやつのbackground.html
This file contains 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
<!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