ページの読み込み時にテキスト領域をぼかす Chrome 拡張機能を作成していますが、機能しません。何か案は?コードは次のとおりです。
マニフェスト.json:
{
"name":"foo",
"version":"1.0",
"manifest_version":2,
"description":"foo",
"content_scripts":[{
"matches":["http://*/*"],
"js":["content.js", "jquery-1.8.3.min.js"]}]
}
Content.js:
$(document).ready(function(){
$("input").blur})