網頁是能夠調用後臺頁面的功能之前,需要以下亟待解決的問題:
- 能夠使用
hello();
從網頁。這是通過使用內容腳本定義hello
的腳本injecting完成的。注入函數使用自定義事件或postMessage
與內容腳本進行通信。
- 內容腳本需要與背景進行通信。這是通過
chrome.runtime.sendMessage
實現的。
如果網頁需要得到回覆,以及:
- 發送從背景頁的答覆(
sendMessage
/onMessage
,見下文)。
- 在內容腳本中,創建自定義事件或使用
postMessage
向網頁發送消息。
- 在網頁中處理此消息。
所有這些方法都是異步的,必須通過回調函數來實現。
這些步驟需要仔細設計。這是一個實現上述所有步驟的通用實現。您需要了解的實現:
- 在要注入代碼中,每當需要聯繫內容腳本時,請使用
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();
,如問題中所示)進行測試,並顯示一個對話框,指出「Background說:null」。
打開後臺頁面,使用localStorage.setItem('whatever', 'Hello!');
查看消息是否正確更改。
不,你CA不是出於明顯的安全原因。該擴展需要公開其API的目的 – Bergi