From d186e6407ece71a9d129b2df42a4817998d5e2a9 Mon Sep 17 00:00:00 2001 From: Masa-Shin <34234442+Masa-Shin@users.noreply.github.com> Date: Mon, 30 Aug 2021 23:56:49 +0900 Subject: Fix typo in manifest.json/content_scripts (#2243) * Fix typos in Add-ons/WebExtensions/manifest.json/content_scripts/index * Remove `$edit` from anchor links in content script page. --- .../manifest.json/content_scripts/index.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'files/ja/mozilla/add-ons/webextensions') diff --git a/files/ja/mozilla/add-ons/webextensions/manifest.json/content_scripts/index.html b/files/ja/mozilla/add-ons/webextensions/manifest.json/content_scripts/index.html index 374666898f..54edea241a 100644 --- a/files/ja/mozilla/add-ons/webextensions/manifest.json/content_scripts/index.html +++ b/files/ja/mozilla/add-ons/webextensions/manifest.json/content_scripts/index.html @@ -61,7 +61,7 @@ translation_of: Mozilla/Add-ons/WebExtensions/manifest.json/content_scripts
all_frames
Boolean
true
: js
と css
で指定されたすべてのスクリプトを、指定した URL要求にマッチするすべてのフレームに(タブの最上位フレームでなくても)挿入します。これは親のフレームだけが URL要求にマッチしている子フレームには挿入しません。URL 要求は各フレームごとにチェックされます。
true
: js
と css
で指定されたすべてのスクリプトを、指定した URL要求にマッチするすべてのフレームに(タブの最上位フレームでなくても)挿入します。これは親のフレームだけが URL要求にマッチしている子フレームには挿入しません。URL 要求は各フレームごとにチェックされます。
false
: タブの最上位フレームで URL要求にマッチしたフレームだけに挿入します。
こうすると
"my-content-script.js"
から jQuery を使えます。
ファイルは
run_at
で指定した時に挿入されます。
ファイルは
run_at
で指定した時に挿入されます。
run_at
String
This option determines when the scripts specified in js
are injected. You can supply one of three strings here, each of which identifies a state in the process of loading a document. The states directly correspond to {{domxref("Document/readyState", "Document.readyState")}}:
This option determines when the scripts specified in js
are injected. You can supply one of three strings here, each of which identifies a state in the process of loading a document. The states directly correspond to {{domxref("Document/readyState", "Document.readyState")}}:
matches
: マッチパターンの配列exclude_matches:
マッチパターンの配列include_globs
: globs の配列exclude_globs:
globs の配列include_globs
: globs の配列exclude_globs:
globs の配列これらのプロパティにマッチするには、URL は配列内で少なくとも 1 つの項目にマッチしなれりばなりません。例えばこのようなプロパティが与えられたら:
+これらのプロパティにマッチするには、URL は配列内で少なくとも 1 つの項目にマッチしなければなりません。例えばこのようなプロパティが与えられたら:
"matches": ["*://*.example.org/*", "*://*.example.com/*"]@@ -197,7 +197,7 @@ translation_of: Mozilla/Add-ons/WebExtensions/manifest.json/content_scripts
例えば: "*na?i"
は "illuminati"
と "annunaki"
にマッチし、"sagnarelli"
にはマッチしせん
例えば: "*na?i"
は "illuminati"
と "annunaki"
にマッチし、"sagnarelli"
にはマッチしません。