在 https 页面上的 Chrome 扩展中使用 jQuery 时,jQuery 不起作用

发布于 2024-10-22 01:02:01 字数 857 浏览 1 评论 0原文

我正在尝试使用 Chrome 扩展程序。在“常规”页面上,我似乎可以获取我需要的任何内容(例如 ('.myclass') )。

在 https 页面上,它返回 null。我正在从我的扩展文件夹加载 jQuery,如此处所述。我以为我在扩展代码中做错了什么,但是在“常规”页面(例如 SO 主页)上运行 $(this) 会返回所有属性/方法,但在 aa https 页面上 - this返回空值。

jQuery没有被注入到页面中吗?

FTR:我正在开发的 https 页面是 Google Adsense。以下是我的 manifest.json 上的部分:

 "background_page": "ga.html",
   "content_scripts": [
   {
     "matches": ["https://www.google.com/adsense/*"],
     "js": ["jquery.js", "cnt.js"]
   }
   ],
  "permissions": ["https://www.google.com/adsense/*"]

从注释中添加: 我的 cnt.js 只包含以下内容:

$(document).ready(function(){
 alert('Hi!');
 });

奇怪的是,在 Adsense 页面上的页面加载完成之前会弹出警报,这对于其他页面,加载完成后弹出

I'm trying my hand at a Chrome extension. On a "regular" page, I can seem to fetch whatever that is I need ( ('.myclass'), for instance).

On an https page, it returns null. I'm loading jQuery from my extensions folder as mentioned here. I thought I was doing something wrong in my extensions code, but running $(this) on a "regular" page ( such as SO homepage) returns all properties/methods, but on a a https page - this returns null.

Is jQuery not being injected into the page?

FTR: The https page I'm working on is Google Adsense. Below is the portion on my manifest.json:

 "background_page": "ga.html",
   "content_scripts": [
   {
     "matches": ["https://www.google.com/adsense/*"],
     "js": ["jquery.js", "cnt.js"]
   }
   ],
  "permissions": ["https://www.google.com/adsense/*"]

To add from comments: My cnt.js contains just this:

$(document).ready(function(){
 alert('Hi!');
 });

Strange thing is that the alert pops up before the page load is complete on Adsense page, which for other pages, it pops up after the load is complete

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稀香 2024-10-29 01:02:01

您可以尝试在 document_end 处注入页面吗?也许adsense 与jQuery 存在冲突?您可以检查控制台并查看是否已经映射了任何 $ 。

现在,尝试添加 document_end:

 "background_page": "ga.html",
 "content_scripts": [{
   "matches": ["https://www.google.com/adsense/*"],
   "js": ["jquery.js", "cnt.js"],
   "run_at": "document_end"
 }],
"permissions": ["https://www.google.com/adsense/*"]

Can you try and inject the page at document_end? Perhaps there is a conflict in adsense with jQuery? Can you check in the console and see if there are any $ mapped already.

For now, try adding the document_end:

 "background_page": "ga.html",
 "content_scripts": [{
   "matches": ["https://www.google.com/adsense/*"],
   "js": ["jquery.js", "cnt.js"],
   "run_at": "document_end"
 }],
"permissions": ["https://www.google.com/adsense/*"]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文