当前位置: 代码迷 >> Web前端 >> chrome 扩充开发
  详细解决方案

chrome 扩充开发

热度:88   发布时间:2012-10-08 19:54:56.0
chrome 扩展开发
<html> 
<head> 
   <script>
      // Called when the url of a tab changes.
      function checkForValidUrl(tabId, changeInfo, tab) {
        // If the letter 'g' is found in the tab's URL...
        if (tab.url.indexOf('g') > -1) {
          // ... show the page action.
          chrome.pageAction.show(tabId);
        }
      };

      // Listen for any changes to the URL of any tab.
      chrome.tabs.onUpdated.addListener(checkForValidUrl);
    </script>
	
<script type="text/javascript">
//init function
function init(){
  
}

</script>
</head> 
<body onLoad="init();">
</body>	                       
</html>


这是一个background.html的内容,里面只是说一个方法      chrome.tabs.onUpdated.addListener(checkForValidUrl);是在刷新浏览器的时候触发


不对,不对,应该是浏览器自己做更新的时候触发,如果人为的输入url不会触发,还有点书签的时候不会触发
  相关解决方案