カテゴリー:
Google Chrome
閲覧数:727 配信日:2013-01-31 22:59
Content Scriptsとは?
・特定URLページを訪れた際、予め決められた処理を自動実行
▼manifest.json
{
"manifest_version": 2,
"name": "My Third Browser Action",
"description": "Content Scripts Test",
"version": "0.1",
"permissions": [
"tabs", "http://dotinstall.com/*"//対象サイトを指定
],
"content_scripts": [
{
"matches": ["http://dotinstall.com/*"],//マッチするURL条件
"js": ["dotinstall.js"]
}
]
}
▼dotinstall.js
alert("hello!");