これは、Apple のトップページ右上にある検索ボックスに「Safari Extensions」という文字を放り込むような処理を作ってみるという例。
★manifest.json
{
"content_scripts": [{
"js": [ "apple.js" ],
"matches": ["http://www.apple.com/*"],
"run_at": "document_end"
}],
"name": "test",
"version": "1.0.0.0"
}
"content_scripts": [{
"js": [ "apple.js" ],
"matches": ["http://www.apple.com/*"],
"run_at": "document_end"
}],
"name": "test",
"version": "1.0.0.0"
}
★apple.js(content_scripts)
document.getElementById("sp-searchtext").value = "Chrome Extensions";
これだけで、実現できる。
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.