特定の Web ページのタブ キーを変更する単純なクロム ユーザー スクリプトがあります。chrome v27が来るまで、これはうまくいきました。これはコードです:
script.js:
// ==UserScript==
// @name Name
// @namespace http://www.someNameSpace.com/
// @description Description
// @include http://weburl1.com/*
// @include http://weburl2.com/*
// ==/UserScript==
function key_event(event){
if(event.keyCode == 9){ //get tab pressed
/* do something here */
}
}
document.addEventListener("keydown", key_event, true);
マニフェスト.json:
{
"content_scripts": [ {
"all_frames" : true,
"exclude_globs": [ ],
"include_globs": [ "http://weburl1.com/*", "http://weburl2.com/*" ],
"js": [ "script.js" ],
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_idle"
} ],
"converted_from_user_script": true,
"description": "Description",
"key": "kVJUyHgHhlZtX2koEeV1ZF7yYHXfLyCyprC+I18+QzI=",
"name": "Name",
"version": "1.01"
}
編集:スクリプトはまだ実行されていますが、最初にロードされたフレームでのみ実行されていることがわかりました。だから私は追加しました
「all_frames」: 真、
機能しなかったマニフェストに。
それについて私ができることはありますか?ご協力いただきありがとうございます