从网站浏览器扩展程序的调用后台功能(Call background function of Chro

2019-07-04 19:15发布

我要寻找一个函数内部网页TE激活一个Chrome扩展。

试想一下, http://www.example.com/test.html包含:

<script>
hello();
</script>

和我的背景页面包含的定义hello功能:

function hello() {
    alert("test");
}

我怎样才能确保Chrome扩展的背景页的hello时称为test.html调用hello();

Answer 1:

网页是能够调用后台页面的功能之前,需要解决以下问题:

  1. 能够使用hello(); 从网页。 这是通过注入定义脚本hello使用内容的脚本。 注入的功能与使用自定义事件或内容脚本通信postMessage
  2. 内容脚本需要与后台进行沟通。 这是通过实施chrome.runtime.sendMessage
    如果网页需要得到回复,以及:
  3. 发送从背景页的答复( sendMessage / onMessage ,见下文)。
  4. 在内容脚本,创建自定义事件或使用postMessage将消息发送到网页。
  5. 在该网页,处理此消息。

所有这些方法都是异步的,必须通过回调函数来实现。

这些步骤需要进行精心设计。 下面是它实现了所有上述步骤的通用实现。 你需要了解的实施内容:

  • 在代码,以待注入,使用sendMessage方法,每当需要的内容脚本联系。
    用法: sendMessage(<mixed message> [, <function callback>])

contentscript.js

// Random unique name, to be used to minimize conflicts:
var EVENT_FROM_PAGE = '__rw_chrome_ext_' + new Date().getTime();
var EVENT_REPLY = '__rw_chrome_ext_reply_' + new Date().getTime();

var s = document.createElement('script');
s.textContent = '(' + function(send_event_name, reply_event_name) {
    // NOTE: This function is serialized and runs in the page's context
    // Begin of the page's functionality
    window.hello = function(string) {
        sendMessage({
            type: 'sayhello',
            data: string
        }, function(response) {
            alert('Background said: ' + response);
        });
    };

    // End of your logic, begin of messaging implementation:
    function sendMessage(message, callback) {
        var transporter = document.createElement('dummy');
        // Handles reply:
        transporter.addEventListener(reply_event_name, function(event) {
            var result = this.getAttribute('result');
            if (this.parentNode) this.parentNode.removeChild(this);
            // After having cleaned up, send callback if needed:
            if (typeof callback == 'function') {
                result = JSON.parse(result);
                callback(result);
            }
        });
        // Functionality to notify content script
        var event = document.createEvent('Events');
        event.initEvent(send_event_name, true, false);
        transporter.setAttribute('data', JSON.stringify(message));
        (document.body||document.documentElement).appendChild(transporter);
        transporter.dispatchEvent(event);
    }
} + ')(' + JSON.stringify(/*string*/EVENT_FROM_PAGE) + ', ' +
           JSON.stringify(/*string*/EVENT_REPLY) + ');';
document.documentElement.appendChild(s);
s.parentNode.removeChild(s);


// Handle messages from/to page:
document.addEventListener(EVENT_FROM_PAGE, function(e) {
    var transporter = e.target;
    if (transporter) {
        var request = JSON.parse(transporter.getAttribute('data'));
        // Example of handling: Send message to background and await reply
        chrome.runtime.sendMessage({
            type: 'page',
            request: request
        }, function(data) {
            // Received message from background, pass to page
            var event = document.createEvent('Events');
            event.initEvent(EVENT_REPLY, false, false);
            transporter.setAttribute('result', JSON.stringify(data));
            transporter.dispatchEvent(event);
        });
    }
});

background.js

chrome.runtime.onMessage.addListener(function(message, sender, sendResponse) {
    if (message && message.type == 'page') {
        var page_message = message.message;
        // Simple example: Get data from extension's local storage
        var result = localStorage.getItem('whatever');
        // Reply result to content script
        sendResponse(result);
    }
});

Chrome扩展程序,是不是不完整的清单文件,所以这里的manifest.json ,我用来测试的应答文件:

{
    "name": "Page to background and back again",
    "version": "1",
    "manifest_version": 2,
    "background": {
        "scripts": ["background.js"]
    },
    "content_scripts": [{
        "matches": ["http://jsfiddle.net/jRaPj/show/*"],
        "js": ["contentscript.js"],
        "all_frames": true,
        "run_at": "document_start"
    }]
}

该扩展在测试http://jsfiddle.net/jRaPj/show/ (含有hello();如在问题看到的),并且示出了一个对话框,说:“背景说:空”。
打开背景页,使用localStorage.setItem('whatever', 'Hello!'); 看到该消息是正确的改变。



Answer 2:

有一个内置的解决方案:将来自网页的消息 ,以扩展

mainfest.json

"externally_connectable": {
  "matches": ["*://*.example.com/*"]
}

网页:

// The ID of the extension we want to talk to.
var editorExtensionId = "abcdefghijklmnoabcdefhijklmnoabc";

// Make a simple request:
chrome.runtime.sendMessage(editorExtensionId, {openUrlInEditor: url},
  function(response) {
    if (!response.success)
      handleError(url);
  });

扩展的背景脚本:

chrome.runtime.onMessageExternal.addListener(
  function(request, sender, sendResponse) {
    if (sender.url == blacklistedWebsite)
      return;  // don't allow this web page access
    if (request.openUrlInEditor)
      openUrl(request.openUrlInEditor);
  });


Answer 3:

不,你的上面,因为代码的背景页面(S)体系结构

是有内容的脚本

演示使用内容脚本

的manifest.json

注册内容脚本myscripts.js

{
"name": "NFC",
"description": "NFC Liken",
"version": "0.1",
"manifest_version": 2,
"permissions": ["tabs", "http://*/", "https://*/"],
"content_scripts": {
    "matches": "http://www.example.com/*",
    "js": [ "myscript.js"]
  },
"browser_action": {
"default_icon": "sync-icon.png",
"default_title": "I Like I Tag"
}
}

如果您需要更多信息,请与我们联系。



文章来源: Call background function of Chrome extension from a site