diff options
| -rw-r--r-- | manifest.json | 2 | ||||
| -rw-r--r-- | popup/popup.js | 4 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/manifest.json b/manifest.json index 8eb0dd9..9517613 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@  {    "manifest_version": 2,    "name": "Zen Internet", -  "version": "1.0.0", +  "version": "1.0.1",    "description": "Inject custom css from my repository in real time",    "browser_specific_settings": {      "gecko": { diff --git a/popup/popup.js b/popup/popup.js index 161634d..1367a5a 100644 --- a/popup/popup.js +++ b/popup/popup.js @@ -43,7 +43,7 @@ new(class ExtensionPopup {        this.saveSettings();        this.updateActiveTabStyling();      }); -     +      this.currentSiteFeatures.addEventListener("change", (event) => {        if (event.target.type === 'checkbox') {          this.saveSettings(); @@ -169,7 +169,7 @@ new(class ExtensionPopup {      this.refetchCSSButton.textContent = "Fetching...";      try {        const response = await fetch( -        "https://github.com/sameerasw/my-internet/raw/refs/heads/experimental/styles.json", +        "https://sameerasw.github.io/my-internet/styles.json",          {            headers: {              "Cache-Control": "no-cache",  | 
