Chrome扩展程序可检测网址

时间:2015-10-16 11:50:48

标签: javascript google-chrome google-chrome-extension

我尝试制作一个Chrome扩展程序,当它检测到特定网址时,推送" chrome上的BACK按钮。

目前我正在尝试控制日志中的一个短语。但它不起作用 有人可以找到我的错误因为我不能

background.js

chrome.tabs.onUpdated.addListener( function( tabId,  changeInfo,  tab) {
       chrome.extension.getBackgroundPage().console.log(tab.url);
       if(tab.url=="https://www.google.com/"){
            console.log("ok");
       }
});

maniftest.json

{
  "manifest_version": 2,

  "name": "gagle detection",
  "description": "detect google.",
  "version": "1.0",

  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": ["background.js"]
  },
  "permissions": [
      "tabs",
       "activeTab",
        "http://*/*",
        "https://*/*"
  ]
}

我希望它在后台运行,所以当我打开www.google.com时,它应该发布一些内容到console.log。 如果它是张贴我应该写在"如果"所以它可以转到上一页????

非常感谢你的时间。

0 个答案:

没有答案