Chrome扩展程序无法将我的脚本注入由tinyMCE创建的iframe

时间:2014-06-24 10:20:26

标签: google-chrome-extension tinymce

我正在开发Chrome扩展程序。 我想将我的脚本注入每个页面/ iframe以获取所选单词。

正常情况下,Chrome会将所有帧注入我的脚本。我只是在文件清单

中声明

它如下所示:

"content_scripts": [{
    "matches": ["http://*/*", "https://*/*", "file://*/*"],
    "css": ["wdict_style.css", "jquery-ui-1.10.3.ui-classic.css", "jquery-ui-1.10.3.ui-compact.css"],
    "js": ["jquery-2.0.3.min.js", "jquery-ui-1.10.3.custom.min.js", "common.js", "dClient.min.js", "content.js"],
    "run_at": "document_start",
    "all_frames": true
}],
"permissions": ["storage", "contextMenus", "http://*/*", "https://*/*", "*://*/*"],

它与其他网页/ iframe一起正常工作。

然而,似乎无法使用tinyMCE创建的iframe。

有什么办法吗?

0 个答案:

没有答案