chrome扩展的background.js中的async ajax

时间:2014-08-20 14:36:08

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

这是我的background.js

   chrome.runtime.onInstalled.addListener(function() {
      chrome.declarativeContent.onPageChanged.removeRules(undefined, function() {
        chrome.declarativeContent.onPageChanged.addRules([{
          conditions: [
            // When a page contains a <video> tag...
            new chrome.declarativeContent.PageStateMatcher({
              pageUrl: { hostEquals: 'www.youtube.com'}
            })
          ],
          // ... show the page action.
          actions: [new chrome.declarativeContent.ShowPageAction() ]
        }]);
      });
    });

我应该在哪里插入我的ajax?以及如何使用jquery?比如我的background.js中的$ .post?

0 个答案:

没有答案