Skip to content

Commit

Permalink
3.0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Anarios committed Jul 28, 2022
1 parent 8e376f6 commit 61c3757
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Extensions/combined/manifest-chrome.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "__MSG_extensionName__",
"name": "__MSG_extensionNameBeta__",
"description": "__MSG_extensionDesc__",
"default_locale": "en",
"version": "3.0.0.1",
"version": "3.0.0.3",
"manifest_version": 3,
"background": {
"service_worker": "ryd.background.js"
Expand Down
15 changes: 7 additions & 8 deletions Extensions/combined/manifest-firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDesc__",
"default_locale": "en",
"version": "3.0.0.0",
"version": "3.0.0.3",
"manifest_version": 2,
"background": {
"scripts": ["ryd.background.js"]
Expand All @@ -28,13 +28,12 @@
"css": ["content-style.css"],
"js": ["ryd.content-script.js"]
}
]
],
// uncomment this section for local storage to work in firefox locally
,
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "42.0"
}
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "42.0"
}
}
}
11 changes: 6 additions & 5 deletions Extensions/combined/ryd.background.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,13 @@ api.runtime.onInstalled.addListener((details) => {
details.reason === "chrome_update" ||
// No need to show changelog if developer just reloaded the extension
details.reason === "update"
)
) {
return;
api.tabs.create({
url: api.runtime.getURL("/changelog/3/changelog_3.0.html"),
});
} else if (details.reason == "install") {
api.tabs.create({
url: api.runtime.getURL("/changelog/3/changelog_3.0.html"),
});
}
});

// api.storage.sync.get(['lastShowChangelogVersion'], (details) => {
Expand Down Expand Up @@ -370,7 +372,6 @@ function initializeColoredThumbs() {
});
}


function initializeColoredBar() {
api.storage.sync.get(["coloredBar"], (res) => {
if (res.coloredBar === undefined) {
Expand Down

0 comments on commit 61c3757

Please sign in to comment.