Google chrome extension 如何在google chrome扩展中使用google adsense?

Google chrome extension 如何在google chrome扩展中使用google adsense?,google-chrome-extension,adsense,Google Chrome Extension,Adsense,我在我的google chrome扩展弹出文件中包含了一些adsense的代码。不幸的是,这不起作用。单击链接时没有打开任何窗口 常规链接在google chrome扩展中不起作用。要打开新选项卡,需要此代码: $('#test').live('click', function(){ chrome.tabs.create({'url': 'http://www.stackoverflow.com'}, function(tab) { // Tab opened. }); });

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

常规链接在google chrome扩展中不起作用。要打开新选项卡,需要此代码:

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

那么我如何在谷歌chrome extensions中使用adsense呢?

尝试在弹出窗口的
中添加
标签。

不允许在chrome extensions中放置adsense广告。我只是想提一下,这样你的扩展就不会被谷歌屏蔽

资料来源: