From f34b77d7f3759e029e57aa0b2d20146b4758c0eb Mon Sep 17 00:00:00 2001 From: nafunii Date: Mon, 10 Jan 2022 11:56:13 +0800 Subject: [PATCH] feat: anti copyright thingy --- manifest.json | 4 ++-- popup.html | 4 ++-- popup.js | 4 +--- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/manifest.json b/manifest.json index 0c5ce8a..1bae5b3 100644 --- a/manifest.json +++ b/manifest.json @@ -9,13 +9,13 @@ "24": "images/icon24.png", "32": "images/icon32.png" }, - "default_title": "Github Accentify", + "default_title": "Gitccentify", "default_popup": "popup.html" }, - "description": "Personalize your Github Experience", + "description": "Personalize your Github Experience by theming it to your own style.", "author": { "name": "Jariel Que", diff --git a/popup.html b/popup.html index e38e14f..3e9e908 100644 --- a/popup.html +++ b/popup.html @@ -14,7 +14,7 @@ - GitHub Accentify + Gitccentify @@ -22,7 +22,7 @@
-

Github Accentify

+

Gitccentify

diff --git a/popup.js b/popup.js index 4ff8be2..1c52443 100644 --- a/popup.js +++ b/popup.js @@ -8,9 +8,7 @@ changeColor.addEventListener("change", async() => { let [tab] = await chrome.tabs.query({ active: true, currentWindow: true }); var accent1 = changeColor.value; - chrome.storage.sync.set({ a1: accent1 }, () => { - alert("Color set to " + accent1); - }); + chrome.storage.sync.set({ a1: accent1 }); chrome.scripting.executeScript({ target: { tabId: tab.id },