From 86670716db61ef5c8e97a1c7e0dc25d20b5df8c6 Mon Sep 17 00:00:00 2001
From: fuwaa <kittykat@fuwa.sh>
Date: Tue, 9 Aug 2022 17:00:46 +0800
Subject: [PATCH] bump version

---
 public/manifest.json | 43 ++++++++++++++++++++++++++++++++-----------
 1 file changed, 32 insertions(+), 11 deletions(-)

diff --git a/public/manifest.json b/public/manifest.json
index 32956d9..4a9c92a 100644
--- a/public/manifest.json
+++ b/public/manifest.json
@@ -1,7 +1,7 @@
 {
   "manifest_version": 3,
   "name": "Pint for GitHub",
-  "version": "2.0",
+  "version": "2.0.1",
   "icons": {
     "16": "pint-logo.png",
     "48": "pint-logo.png",
@@ -21,27 +21,48 @@
     "name": "Jariel Que",
     "url": "https://github.com/fuwaa"
   },
-  "host_permissions": ["https://*.github.com/"],
+  "host_permissions": [
+    "https://*.github.com/"
+  ],
   "content_scripts": [
     {
       "run_at": "document_start",
-      "matches": ["https://*.github.com/*"],
-      "css": ["pint-css.css"],
-      "js": ["initial.js"]
+      "matches": [
+        "https://*.github.com/*"
+      ],
+      "css": [
+        "pint-css.css"
+      ],
+      "js": [
+        "initial.js"
+      ]
     },
     {
       "run_at": "document_end",
-      "matches": ["https://*.github.com/*"],
-      "js": ["initial.js"],
-      "css": ["unhide.css"]
+      "matches": [
+        "https://*.github.com/*"
+      ],
+      "js": [
+        "initial.js"
+      ],
+      "css": [
+        "unhide.css"
+      ]
     },
     {
       "run_at": "document_idle",
-      "matches": ["https://*.github.com/*"],
-      "js": ["initial.js"]
+      "matches": [
+        "https://*.github.com/*"
+      ],
+      "js": [
+        "initial.js"
+      ]
     }
   ],
-  "permissions": ["storage", "scripting"],
+  "permissions": [
+    "storage",
+    "scripting"
+  ],
   "background": {
     "service_worker": "background.js"
   },