これが問題かもしれないと思います:
"content_scripts" : [
{
"matches" : [
"http://195.88.55.16"
],
"js" : ["script.js"],
"run_at" : "document_idle",
"all_frames" : false
}
これが問題かもしれないと思います:
"content_scripts" : [
{
"matches" : [
"http://195.88.55.16"
],
"js" : ["script.js"],
"run_at" : "document_idle",
"all_frames" : false
}
matches
パターンを有効にするには、セクション内のホストにスラッシュ (おそらくスラッシュ + スター) を追加する必要があります。
"matches" : [
"http://195.88.55.16/*"
],
詳細については、一致パターンのドキュメントをご覧ください。
基本的な構文は次のとおりです。
<url-pattern> := <scheme>://<host><path> <scheme> := '*' | 'http' | 'https' | 'file' | 'ftp' | 'chrome-extension' <host> := '*' | '*.' <any char except '/' and '*'>+ <path> := '/' <any chars>