Chrome 扩展:加载不同的内容脚本

Posted

技术标签:

【中文标题】Chrome 扩展:加载不同的内容脚本【英文标题】:Chrome extension: load different content scripts 【发布时间】:2011-11-25 16:14:01 【问题描述】:

我想根据当前选择的页面和选项卡加载不同的内容脚本。现在,我有三个内容脚本。我想将其中两个用于一页,第三个用于另一页。

属于第1页:

content_script.js load_content_script.js

属于page2:

newtab_content_script.js

现在我的清单看起来像这样


  "name": "A plugin for AdData express. Generate an instant excel document from the brands you check mark.",
  "version": "1.0",
  "background_page": "background.html",
  "permissions": [
    "cookies",
    "tabs", 
    "http://*/*", "https://", "*", "http://*/*", "https://*/*",
    "http://www.addataexpress.com", "http://www.addataexpress.com/*"
  ],
  "content_scripts": [
    
      "matches": ["<all_urls>","http://*/*","https://*/*"],
      "js": ["load_content_script.js", "content_script.js", "newtab_content_script.js", "jquery.min.js", "json.js"]
    
  ],
  "browser_action": 
      "name": "AdData Express Plugin",
      "default_icon": "icon.png",
      "js": "jquery.min.js",
      "popup": "popup.html"
  

我将如何在清单或其他地方构建它?

【问题讨论】:

您也可以使用 'chrome.declarativeContent.RequestContentScript' 如本答案所述:***.com/a/26677279/176140 您是否考虑过让Darin's answer 成为公认的答案?这似乎是最直接的解决方案。 【参考方案1】:

为了完整起见,您从清单中执行此操作的方式是根据需要在“content_scripts”下添加尽可能多的 matches 块:

"content_scripts": [
  
    "matches": ["http://www.google.com/*"],
    "css": ["mygooglestyles.css"],
    "js": ["jquery.js", "mygooglescript.js"]
  ,
  
    "matches": ["http://www.yahoo.com/*"],
    "css": ["myyahoostyles.css"],
    "js": ["jquery.js", "myyahooscript.js"]
  
],

【讨论】:

这比chrome.tabs.executeScript() 更能防止交叉错误。 +1【参考方案2】:

您应该使用executeScript,而不是使用绑定到清单中指定的 URL 表达式的内容脚本,它可以让您以编程方式决定何时注入 JS sn-p 或文件:

// background.js
chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => 
  // there are other status stages you may prefer to inject after
  if (changeInfo.status === "complete") 
    const url = new URL(tab.url);
    if (url.hostname === "www.***.com") 
    
      // this is the line which injects the script
      chrome.tabs.executeScript(tabId, file: "content_script.js");
    
  
);

确保向 manifest.json 添加tabs 权限:


  // ...settings omitted...
  "permissions": [
    "tabs",  // add me
  ]

【讨论】:

如果使用executescript从后台页面调用它们,它们是否被视为内容脚本? 它们使用相同的机制注入到页面中,具有相同的限制。 值得一提的是,这需要manifest文件中的tabs权限。 在清单中声明它的缺点是什么?为什么用exceuteScrip'注入更好?我知道executeScript 允许您以编程方式决定何时注入脚本,但如果您总是希望它在某个 url 注入呢? @sbru 在这种情况下,您将使用清单。如果您只想在页面上的特定条件下执行脚本怎么办。这是我在 executeScript 中看到的一个案例。【参考方案3】:

你应该使用Programmatic injection

chrome.tabs.executeScript(null, file: "content_script.js");

【讨论】:

您能解释一下原因吗? 看我的评论***.com/questions/7563379/…

以上是关于Chrome 扩展:加载不同的内容脚本的主要内容,如果未能解决你的问题,请参考以下文章

Chrome 扩展“拒绝加载脚本,因为它违反了以下内容安全策略指令”

如何从 chrome 扩展中读取文件?

从 Chrome 内容脚本扩展访问 iframe

Chrome 扩展 - 在浏览器上加载 js 之前获取 Html DOM

无法通过 chrome 扩展与 iFrame 交互

chrome 扩展中的“拒绝加载脚本”错误