diff options
Diffstat (limited to 'files/zh-tw/製作_firefox_佈景主題/install.rdf/index.html')
| -rw-r--r-- | files/zh-tw/製作_firefox_佈景主題/install.rdf/index.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/files/zh-tw/製作_firefox_佈景主題/install.rdf/index.html b/files/zh-tw/製作_firefox_佈景主題/install.rdf/index.html new file mode 100644 index 0000000000..220bf9e99c --- /dev/null +++ b/files/zh-tw/製作_firefox_佈景主題/install.rdf/index.html @@ -0,0 +1,47 @@ +--- +title: install.rdf +slug: 製作_Firefox_佈景主題/install.rdf +translation_of: Archive/Themes/Creating_a_Skin_for_Firefox/install.rdf +--- +<p> +</p><p>將下列程式碼複製貼到純文字檔中,命名為「<code>install.rdf</code>」: +</p> +<pre><?xml version="1.0"?> + +<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:em="http://www.mozilla.org/2004/em-rdf#"> + + <Description about="urn:mozilla:install-manifest"> + <em:id>{Themes_UUID}</em:id> + <em:version>Themes_Version</em:version> + +<!-- 本附加元件所能支援的應用軟體及其版本,版本限制有最低需求跟最高限制兩種。 --> + +<em:targetApplication> + <Description> + <!-- Firefox 的 UUID --> + <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> + <em:minVersion>Min_FF_Version</em:minVersion> + <em:maxVersion>Max_FF_Version</em:maxVersion> + </Description> + </em:targetApplication> + + <!-- 其他資訊 --> + <!-- My_Theme --> + <em:name>My_Theme</em:name> + <em:description>My_Theme</em:description> + <em:creator>Your_Name</em:creator> + <em:contributor>Contributors_Names</em:contributor> + <em:homepageURL>Themes_HomePage</em:homepageURL> + <em:updateURL> Url_of_Update_Location </em:updateURL> + <em:aboutURL> Url_of_About_Page </em:aboutURL> + + <!-- 佈景主題管理員用--> + <em:internalName>My_Theme</em:internalName> + </Description> + +</RDF> +</pre> +<div class="noinclude"> +</div> +{{ languages( { "de": "de/Theme_erstellen/install.rdf", "en": "en/Creating_a_Skin_for_Firefox/install.rdf", "fr": "fr/Cr\u00e9er_un_th\u00e8me_pour_Firefox/install.rdf", "ja": "ja/Creating_a_Skin_for_Firefox/install.rdf", "pl": "pl/Tworzenie_sk\u00f3rek_dla_Firefoksa/install.rdf", "pt": "pt/Criando_um_visual_para_o_Firefox/install.rdf" } ) }} |
