0

我有一个简单的 chrome 用户脚本,可以修改特定网页的 tab 键。在 chrome v27 出现之前,这一直很好。这是代码:

脚本.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”:是的,

到没有工作的清单。

我能做些什么吗?谢谢你的帮助

4

2 回答 2

1

在 Chrome 版本 27.0.1453.110 中,该脚本再次运行。另请参阅https://code.google.com/p/chromium/issues/detail?id=242890

于 2013-06-08T17:00:00.267 回答
0

内容脚本与当前页面不在同一上下文中。您应该通过另一个标签注入事件处理程序

var actualCode = 'function key_event() {'
               + '    if(event.keyCode == 9){'
               +     'alert('tab');
               + '}';

var script = document.createElement('script');
script.textContent = actualCode;
(document.head||document.documentElement).appendChild(script);
script.parentNode.removeChild(script);
于 2013-05-27T20:12:06.137 回答