如何在 google chrome 扩展程序中使用 google adsense?

发布于 2024-10-13 12:12:40 字数 356 浏览 4 评论 0原文

我在我的 google chrome 扩展程序弹出文件中包含了一些 adsense 代码。不幸的是,这不起作用。单击链接时不会打开任何窗口。

常规链接在 Google Chrome 扩展中不起作用。要打开新标签,需要此代码:

$('#test').live('click', function(){
 chrome.tabs.create({'url': 'http://www.stackoverflow.com'}, function(tab) {
     // Tab opened.
 });
});

那么如何在 google chrome 扩展中使用 adsense?

I included some adsense code in my google chrome extension popup file. Unfortunately this is not working. No window is opend when clicking on the link.

Regular links do not work in google chrome extensions. To open new tabs this code is needed:

$('#test').live('click', function(){
 chrome.tabs.create({'url': 'http://www.stackoverflow.com'}, function(tab) {
     // Tab opened.
 });
});

So how do I use adsense in google chrome extensions?

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

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

发布评论

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

评论(2

執念 2024-10-20 12:12:40

尝试将 标记添加到弹出窗口的 中。

Try to add <base target="_blank" /> tag into <head> of your popup.

岁月流歌 2024-10-20 12:12:40

不允许在 Chrome 扩展程序中放置 AdSense 广告。我只是想提一下,这样你的扩展程序就不会被 Google 阻止。

来源:
http://support.google.com/adsense /bin/answer.py?hl=zh-CN&answer=1346295#Ads_in_a_software_application

It's not allowed to place AdSense ads in your Chrome extensions. I just wanted to mention that, so that your extension doesn't get blocked by Google.

Source:
http://support.google.com/adsense/bin/answer.py?hl=en&answer=1346295#Ads_in_a_software_application

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文