Browse Source

修改属性。。

liuyuqi-dellpc 6 years ago
parent
commit
e5d07c5ebd

+ 1 - 0
.gitignore

@@ -0,0 +1 @@
+/.vs

+ 6 - 6
AppXManifest.xml

@@ -1,12 +1,12 @@
 <?xml version="1.0" encoding="utf-8" ?>
 <Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" IgnorableNamespaces="uap3">
 	
-    <Identity Name="2907385AAD3C7.FullScreen" Publisher="CN=00DC470D-9A91-4F5D-A194-4D2A14249801" Version="1.0.0.0" />
+    <Identity Name="2907385AAD3C7.FullScreen" Publisher="CN=00DC470D-9A91-4F5D-A194-4D2A14249801" Version="1.1.0.0" />
 
     <Properties>
-        <DisplayName>FullScreen</DisplayName>
+        <DisplayName>Edge Full Screen</DisplayName>
         <PublisherDisplayName>Zhizhou Technology Co.,Ltd.</PublisherDisplayName>
-        <Logo>[REPLACE WITH RELATIVE PATH TO 50x50 ICON]</Logo>
+        <Logo>Assets\icon_50.png</Logo>
     </Properties>
 
     <Dependencies>
@@ -14,16 +14,16 @@
     </Dependencies>
 
     <Resources>
-        <Resource Language="en-us" />
+        <Resource Language="zh-cn" />
     </Resources>
 
     <Applications>
         <Application Id="App">
-            <uap:VisualElements AppListEntry="none" DisplayName="[REPLACE WITH RESERVED STORE NAME]" Square150x150Logo="[REPLACE WITH RELATIVE PATH TO 150x150 ICON]" Square44x44Logo="[REPLACE WITH RELATIVE PATH TO 44x44 ICON]" Description="This is the description of the extension"
+            <uap:VisualElements AppListEntry="none" DisplayName="Edge Full Screen" Square150x150Logo="Assets\icon_150.png" Square44x44Logo="Assets\icon_44.png" Description="实现 Edge 全屏启动。"
             BackgroundColor="white"></uap:VisualElements>
             <Extensions>
                 <uap3:Extension Category="windows.appExtension">
-                    <uap3:AppExtension Name="com.microsoft.edge.extension" Id="EdgeExtension" PublicFolder="Extension" DisplayName="[REPLACE WITH RESERVED STORE NAME]"></uap3:AppExtension>
+                    <uap3:AppExtension Name="com.microsoft.edge.extension" Id="EdgeExtension" PublicFolder="Extension" DisplayName="Edge Full Screen"></uap3:AppExtension>
                 </uap3:Extension>
             </Extensions>
         </Application>

BIN
Assets/color-changer44.png


BIN
Assets/icon_150.png


BIN
Assets/icon_50.png


+ 1 - 1
Extension/_locales/en/messages.json

@@ -1,7 +1,7 @@
 {
    "extensionName": {
       "description": "Important: Please substitute the word 'English' for the language (e.g. Deutsch/Francais/etc) you are translating this into.",
-      "message": "EDGE FULLSCREEN"
+      "message": "EDGE FULL SCREEN"
    },
    "userLanguage": {
       "description": "Important: Please substitute the word 'English' for the language (e.g. Deutsch/Francais/etc) you are translating this into.",

+ 1 - 1
Extension/_locales/zh_CN/messages.json

@@ -1,7 +1,7 @@
 {
    "extensionName": {
       "description": "Important: Please substitute the word 'English' for the language (e.g. Deutsch/Francais/etc) you are translating this into.",
-      "message": "EDGE FULLSCREEN"
+      "message": "EDGE FULL SCREEN"
    },
    "userLanguage": {
       "description": "Important: Please substitute the word 'English' for the language (e.g. Deutsch/Francais/etc) you are translating this into.",

+ 3 - 3
Extension/manifest.json

@@ -1,7 +1,7 @@
 {
-  "name": "EDGE FULLSCREEN",
+  "name": "EDGE FULL SCREEN",
   "author": "Zhizhou Technology Co.,Ltd. ",
-  "description": "Edge全屏插件",
+  "description": "实现 Edge 全屏启动。",
   "version": "1.0",
   "icons": {
     "25": "images/color-changer25.png",
@@ -16,7 +16,7 @@
         "20": "images/color-changer25.png",
         "40": "images/color-changer48.png"
     },
-    "default_title": "EDGE FULLSCREEN",
+    "default_title": "EDGE FULL SCREEN",
     "default_popup": "popup.html"
   },
   "background": {

+ 2 - 2
Extension/popup.html

@@ -6,8 +6,8 @@
   </head>
   <body>
     <h1>Full Screen</h1>
-    <p>Version: 1.0.0.0</p>
-    <p><a href="https://git.yoqi.me/lyq/fullscreen_edge">项目开源</a></p>
+    <p>Version: 1.1.0.0</p>
+    <p><a href="https://github.com/jianboy/edge_fullscreen">项目开源</a></p>
     <div class="div_action">
         <button id="btn_start">Start</button>
         <button id="btn_stop">Stop</button>

+ 2 - 2
README.md

@@ -1,4 +1,4 @@
-# EDGE FULLSCREEN
+# EDGE FULL SCREEN
 
 ### 介绍
 
@@ -12,7 +12,7 @@
  可以浏览这个[文档](https://docs.microsoft.com/zh-cn/microsoft-edge/extensions/guides/packaging/creating-and-testing-extension-packages)
 
  ```
- C:\Program Files (x86)\Windows Kits\10\bin\x64>makeappx.exe pack /h SHA256 /d "C:\Extension\My Extension" /p C:\Extension\MyExtension.appx
+"D:\Windows Kits\10\bin\10.0.17134.0\x64\makeappx.exe" pack /h SHA256 /d "D:\appx\input\edge_fullscreen" /p "D:\appx\output\Edge Full Screen"
 
  ```