使用Chrome扩展程序,我想:
要完成#1,我认为此页面上的解决方案之一可以正常工作: How can I detect the current tab's mime type in a Google Chrome extension?
问题在于我无法在PDF页面上运行扩展程序。
如何在PDF页面上运行background.js
扩展程序?
目前我的清单文件:
{
"matches":[
"https://*/*",
"http://*/*"
],
"run_at":"document_idle",
"css":[
"jquery-ui.css",
"resizable.css"
],
"js":[
"jquery.js",
"jquery-ui.js",
"storage.js",
"background.js"
],
"all_frames":true
}
答案 0 :(得分:0)
在清单文件中你应该这样:
"content_scripts": [
{
"matches": ["*://*.pdf"],
"js": ["background.js"]
}
]