Chrome扩展程序:注入代码如果引荐来源是Facebook

时间:2016-11-05 07:34:40

标签: javascript google-chrome-extension

如果引荐来源是facebook但是它无效,我想将代码注入页面中。这是我在下面使用的代码。

的manifest.json



{
  "name": "Injecta",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Injecting stuff",
  "homepage_url": "http://danharper.me",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Inject!"
  },
  "permissions": [
    "https://*/*",
    "http://*/*",
    "tabs"
  ]
}




我认为问题出在这里。如果url referrer是facebook,我想注入代码。

Background.js



var x = document.referrer;
if (x === "www.facebook.com" ) {

// listen for our browerAction to be clicked
chrome.browserAction.onClicked.addListener(function (tab) {
	// for the current tab, inject the "inject.js" file & execute it
	chrome.tabs.executeScript(tab.ib, {
		file: 'inject.js'
	});
});
}




Inject.js



// this is the code which will be injected into a given page...

(function() {

	// just place a div at top right
	var div = document.createElement('div');
	div.style.position = 'fixed';
	div.style.top = 0;
	div.style.right = 0;
	div.textContent = 'Injected!';
	document.body.appendChild(div);

	alert('inserted self... giggity');

})();




如果你能为我提供工作代码,我将很高兴。

1 个答案:

答案 0 :(得分:0)

您的要求有两位:

  1. 检查推荐人是否为Facebook(FB),
  2. 如果引荐来源为FB,则注入脚本。
  3. 首先需要通过注入的内容脚本在浏览器页面中进行,因为页面的上下文(即引用者)不能直接用于后台脚本。

    您可以在所有页面中注入简单的引荐来源检测器内容脚本。当检测到referrer = FB时,向后台脚本发送一条消息,然后注入仅FB的脚本。

    或者,你可以在所有页面中注入完整的脚本,但是隐藏活动位(你的i​​nject.js代码)在referrer === FB的测试后面。

    无论哪种方式,引用者的检测都需要在注入的内容脚本中进行。

    如果你愿意的话,我可以提供代码帮助,但我觉得这很简单。一个问题,更多的是架构,而不是代码,正如@wOxxOm指出的那样。

    更新2016-11-08:

    重新阅读你的代码,看来你打算做的是在页面上注入脚本

    1. 推荐人是facebook,
    2. 用户已按下浏览器操作请求注射。
    3. 为这种情况提供了以下代码。

      1. 将基本脚本注入所有页面,通常通过将其列在清单中来完成。
      2. 当按下浏览器操作时,向始终注入的脚本发送一条消息,询问该标签的引用者是否为facebook。
      3. 如果引荐来源是Facebook,脚本会以true回复 - >现在注入主脚本。
      4. 希望这有帮助。

        干杯!

        添加代码:

        //更新了清单 - 添加了始终注入的内容脚本

        {
          "name": "Injecta",
          "version": "0.0.1",
          "manifest_version": 2,
          "description": "Injecting stuff",
          "homepage_url": "http://danharper.me",
          "background": {
            "scripts": [
              "background.js"
            ],
            "persistent": true
          },
          "browser_action": {
            "default_title": "Inject!"
          },
          "content_scripts": [
            {
              "matches": ["<all_urls>"],
              "js": ["js/inject_all_script.js"]
            }
          ],
          "permissions": [
            "https://*/*",
            "http://*/*",
            "tabs"
          ]
        }
        

        // background.js

        // listen for our browerAction to be clicked
        chrome.browserAction.onClicked.addListener(function (tab) {
          // send a message to the 'always-injected' script to ask if the page referrer is facebook
          chrome.tabs.sendMessage(tab.id, {"type": "isFacebook?"}, function(response){
            if(response.answer){
              // if the referrer is facebook, inject the "inject.js" file & execute it
              chrome.tabs.executeScript(tab.ib, {
                file: 'inject.js'
              });
            }
          });
        });
        

        // inject_all_script.js

        // this is the code which will be injected into *all* pages
        chrome.runtime.onMessage.addListener(function(message, sender, sendResponse){
          if(sender.id === chrome.runtime.id && message.type && message.type === "isFacebook?"){
            sendResponse({"answer": /https?\/\/(www)?\.facebook\.com/i.test(document.referrer)});
          }
        })
        

        // selective -jected.js

        // this is the code which will be injected into pages that have facebook as referrer...
        (function() {
        
          // just place a div at top right
          var div = document.createElement('div');
          div.style.position = 'fixed';
          div.style.top = 0;
          div.style.right = 0;
          div.textContent = 'Injected!';
          document.body.appendChild(div);
        
          alert('inserted self... giggity');
        
        })();