Google Chrome Extensions(拡張機能) Part19at SOFTWARE
Google Chrome Extensions(拡張機能) Part19 - 暇つぶし2ch504:名無しさん@お腹いっぱい。
15/08/14 02:25:46.31 XKIyVgKq0.net
●background.html
<html><head>
<script type="text/javascript" src="background.js"></script>
</head><body>
<input type="text" id="test_id" value="">
</body></html>
●background.js
function getClickHandler() {
return function(info, tab) {
document.getElementById("test_id").value=info.selectionText
window.open("test.html", "_blank")
};
};
var parentId = chrome.contextMenus.create({
"title" : "samplemenu",
"type" : "normal",
"contexts" : ["selection"],
"onclick" : getClickHandler()
});


次ページ
続きを表示
1を表示
最新レス表示
レスジャンプ
類似スレ一覧
スレッドの検索
話題のニュース
おまかせリスト
オプション
しおりを挟む
スレッドに書込
スレッドの一覧
暇つぶし2ch