Skip to content

Commit

Permalink
v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
StigNygaard committed Jul 20, 2024
1 parent acb0f5d commit a0db24f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions WebExtension/context.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ globalThis.context = globalThis.context || (function Context() {
globalThis.browser ??= chrome;

// Console:
const LOG = false; // false
const INFO = false; // false
const DEBUG = false; // false
const WARN = true;
const ERROR = true;
const WARN = true;
const DEBUG = false; // false
const INFO = false; // false
const LOG = false; // false
function log(...arg) {
if (console && LOG) console.log(...arg);
}
Expand Down
2 changes: 1 addition & 1 deletion WebExtension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "xIFr",
"version": "3.0.0",
"version": "3.0.1",
"default_locale": "en",

"description": "__MSG_extensionDescription__",
Expand Down

0 comments on commit a0db24f

Please sign in to comment.