Skip to content

Commit

Permalink
fix light theme icon mixup
Browse files Browse the repository at this point in the history
Signed-off-by: joél hawkins torres <[email protected]>
  • Loading branch information
hwknsj committed Aug 3, 2024
1 parent e384b9b commit 4681fd7
Show file tree
Hide file tree
Showing 9 changed files with 964 additions and 933 deletions.
Binary file modified .yarn/install-state.gz
Binary file not shown.
894 changes: 0 additions & 894 deletions .yarn/releases/yarn-4.3.0.cjs

This file was deleted.

925 changes: 925 additions & 0 deletions .yarn/releases/yarn-4.4.0.cjs

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
enableTelemetry: false

networkConcurrency: 50

nodeLinker: node-modules

npmRegistryServer: 'https://registry.yarnpkg.com'

yarnPath: .yarn/releases/yarn-4.3.0.cjs

injectEnvironmentFiles:
- .env.yarn?
- .env.local?
- .env?
- .env.production?

networkConcurrency: 50

nodeLinker: node-modules

npmRegistryServer: "https://registry.yarnpkg.com"

yarnPath: .yarn/releases/yarn-4.4.0.cjs
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@
"test:watch": "run-s test:once -- --watch",
"coverage": "nyc --reporter=html --reporter=text mocha test/**/*.test.js --timeout 60000"
},
"packageManager": "yarn@4.3.0"
}
"packageManager": "yarn@4.4.0"
}
2 changes: 1 addition & 1 deletion src/_locales
15 changes: 11 additions & 4 deletions src/img/container-openin-16-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/img/container-openin-16.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 10 additions & 24 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Tab Containers",
"version": "8.1.3",
"version": "8.1.4",
"incognito": "not_allowed",
"description": "__MSG_extensionDescription__",
"icons": {
Expand All @@ -24,11 +24,7 @@
"webRequestBlocking",
"webRequest"
],
"optional_permissions": [
"bookmarks",
"nativeMessaging",
"proxy"
],
"optional_permissions": ["bookmarks", "nativeMessaging", "proxy"],
"browser_specific_settings": {
"gecko": {
"id": "@joel.biz-containers",
Expand Down Expand Up @@ -119,8 +115,8 @@
"default_area": "navbar",
"theme_icons": [
{
"light": "img/container-openin-16.svg",
"dark": "img/container-openin-16-dark.svg",
"light": "img/container-openin-16-dark.svg",
"dark": "img/container-openin-16.svg",
"size": 32
}
]
Expand All @@ -131,33 +127,23 @@
"default_title": "__MSG_alwaysOpenSiteInContainer__",
"default_popup": "pageActionPopup.html",
"pinned": false,
"show_matches": [
"*://*/*"
]
"show_matches": ["*://*/*"]
},
"background": {
"page": "js/background/index.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/content-script.js"
],
"css": [
"css/content.css"
],
"matches": ["<all_urls>"],
"js": ["js/content-script.js"],
"css": ["css/content.css"],
"run_at": "document_start"
}
],
"default_locale": "en",
"web_accessible_resources": [
"/img/container-site-d-24.png"
],
"web_accessible_resources": ["/img/container-site-d-24.png"],
"options_ui": {
"page": "options.html",
"browser_style": true
}
}
}

0 comments on commit 4681fd7

Please sign in to comment.