--- title: proxy slug: Mozilla/Add-ons/WebExtensions/API/proxy tags: - API - Add-ons - Proxy - WebExtensions translation_of: Mozilla/Add-ons/WebExtensions/API/proxy ---
拡張された Proxy Auto-Configuration (PAC) file (これはウェブのリクエストをプロキシ化するポリシーを実装します) を実装するのにプロキシ API を使います。この実装は標準の PAC 設計といくつかそれていて、なぜなら PAC ファイルのデファクト仕様は 1995年頃の初期実装から変えられてないためです。仕様を維持している標準化団体はありません。
Google Chrome では 同じく"proxy"という拡張機能API が提供されていて、その機能はこの API と似ていて、拡張機能はプロキシポリシーを使うことができます。しかし、Chrome API の設計はこの API とまったく違います。Chrome の API では拡張機能は PAC ファイルを定義できて、明示的なプロキシルールも定義できます。このため拡張機能 PAC ファイルも使用できて、この API は PAC ファイルアプローチのみをサポートします。この API は Chrome proxy
API と互換性がないため、この API は browser
名前空間のみで利用できます。
この API を使うには、"proxy" パーミッションが必要です。
PAC ファイルと拡張機能のバックグラウンドページ(やその他の権限つきページ、ポップアップページのようなもの)とでメッセージを交換できて、その手段は runtime.sendMessage()
と runtime.onMessage
。
PAC ファイルにメッセージを送るには、toProxyScript
オプションをセットしなければなりません:
// background.js // Log any messages from the proxy. browser.runtime.onMessage.addListener((message, sender) => { if (sender.url === browser.extension.getURL(proxyScriptURL)) { console.log(message); } }); let messageToProxy = { enabled: true, foo: "A string", bar: 1234 }; browser.runtime.sendMessage(messageToProxy, {toProxyScript: true});
// pac.js browser.runtime.onMessage.addListener((message) => { if (message.enabled) { browser.runtime.sendMessage("I'm enabled!"); } });
The basic PAC file syntax is described in the PAC documentation, but the implementation used by the proxy API differs from standard PAC design in several ways, which are described in this section.
The standard FindProxyForURL()
returns a string. In Firefox 55 and 56, the PAC file used with the proxy API also returns a string. In Firefox 55 only, you must pass an argument to the "DIRECT" return value, even though it doesn't need an argument.
From Firefox 57 onwards, FindProxyForURL()
may still return a string, but may alternatively (and preferably) return an array of objects. Each object has the following properties:
type
host
port
username
{{optional_inline}}password
{{optional_inline}}proxyDNS
{{optional_inline}}false
.failoverTimeout
{{optional_inline}}例えば、:
const proxySpecification = [ { type: "socks", host: "foo.com", port: 1080, proxyDNS: true, failoverTimeout: 5 }, { type: "socks", host: "bar.com", port: 1060, } ];
The first proxy in the array will be tried first. If it does not respond in failoverTimeout
seconds, the next will be tried, until the end of the array is reached.
The global helper functions usually available for PAC files (isPlainHostName()
, dnsDomainIs()
, and so on) are not available.
Code running in the PAC file does not get access to:
runtime.sendMessage()
and runtime.onMessage
// pac.js // send the log message to the background script browser.runtime.sendMessage(`Proxy-blocker: blocked ${url}`);
// background-script.js function handleMessage(message, sender) { // only handle messages from the proxy script if (sender.url != browser.extension.getURL(proxyScriptURL)) { return; } console.log(message); } browser.runtime.onMessage.addListener(handleMessage);
{{Compat("webextensions.api.proxy")}}
{{WebExtExamples("h2")}}
Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.