Browse Source

Styling, version bump, options popup

Anarios 2 năm trước cách đây
mục cha
commit
0c39488852

+ 0 - 1
Extensions/combined/content-style.css

@@ -42,7 +42,6 @@
 .ryd-tooltip-new-design {
   position: absolute;
   bottom: -10px;
-  left: -4px;
 }
 
 .ryd-tooltip-bar-container {

+ 6 - 2
Extensions/combined/manifest-chrome.json

@@ -2,7 +2,7 @@
   "name": "__MSG_extensionName__",
   "description": "__MSG_extensionDesc__",
   "default_locale": "en",
-  "version": "3.0.0.6",
+  "version": "3.0.0.8",
   "manifest_version": 3,
   "background": {
     "service_worker": "ryd.background.js"
@@ -36,5 +36,9 @@
       "resources": ["ryd.script.js"],
       "matches": ["*://*.youtube.com/*"]
     }
-  ]
+  ],
+  "options_ui": {
+    "page": "popup.html",
+    "open_in_tab": false
+  }
 }

+ 12 - 8
Extensions/combined/manifest-firefox.json

@@ -2,7 +2,7 @@
   "name": "__MSG_extensionName__",
   "description": "__MSG_extensionDesc__",
   "default_locale": "en",
-  "version": "3.0.0.7",
+  "version": "3.0.0.8",
   "manifest_version": 2,
   "background": {
     "scripts": ["ryd.background.js"]
@@ -28,12 +28,16 @@
       "css": ["content-style.css"],
       "js": ["ryd.content-script.js"]
     }
-  ]
+  ],
+  "options_ui": {
+    "page": "popup.html",
+    "open_in_tab": false
+  }
   // uncomment this section for local storage to work in firefox locally
-//  "browser_specific_settings": {
-//    "gecko": {
-//      "id": "addon@example.com",
-//      "strict_min_version": "42.0"
-//    }
-//  }
+  //  "browser_specific_settings": {
+  //    "gecko": {
+  //      "id": "addon@example.com",
+  //      "strict_min_version": "42.0"
+  //    }
+  //  }
 }