以下の3つのファイルを作成し、フォルダに入れてChrome拡張のページにドラッグするだけ。
manifest.json
1 2 3 4 5 6 7 8 |
{ "manifest_version": 2, "name": "ブログ検索", "version": "0.0.1", "browser_action":{ "default_popup": "popup.html" } } |
script.js
1 2 3 4 5 6 7 |
$(document).keydown(function(e){ if(e.keyCode == 13){ chrome.tabs.create({ url: "https://www.google.co.jp/search?hl=ja&as_sitesearch=http://okamurax.com/&q=" + $("#a").val() }); } }); |
popup.html
1 2 3 4 5 6 7 8 9 10 11 12 |
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="jquery-3.1.1.min.js"></script> <script type="text/javascript" src="script.js"></script> </head> <body> <input type="text" id="a" /> </body> </html> |