diff --git a/devtool/public/manifest.firefox.json b/devtool/public/manifest.firefox.json index 8db8b4d5..fb5e32e9 100644 --- a/devtool/public/manifest.firefox.json +++ b/devtool/public/manifest.firefox.json @@ -1,9 +1,11 @@ { - "name": "morfeo", - "version": "1.0.0", - "description": "Morfeo web extension", + "name": "__MSG_name__", + "version": "0.3.0", + "description": "__MSG_description__", "short_name": "morfeo", "author": "Mauro Erta", + "homepage_url": "https://morfeo.dev", + "default_locale": "en", "manifest_version": 2, "icons": { "16": "img/icon-16.png", @@ -36,5 +38,5 @@ "all_frames": false } ], - "permissions": ["storage", "tabs", ""] + "permissions": ["clipboardWrite", "tabs", ""] } diff --git a/devtool/public/manifest.json b/devtool/public/manifest.json index 7ee01ca9..4e6f4058 100644 --- a/devtool/public/manifest.json +++ b/devtool/public/manifest.json @@ -1,12 +1,12 @@ { "manifest_version": 3, "name": "__MSG_name__", - "version": "1.0.0", + "version": "0.3.0", "description": "__MSG_description__", "author": "Mauro Erta", "devtools_page": "devtool.html", "options_page": "options.html", - "homepage_url": "https://github.com/VLK-STUDIO/morfeo", + "homepage_url": "https://morfeo.dev", "default_locale": "en", "icons": { "16": "img/icon-16.png", @@ -25,7 +25,7 @@ "externally_connectable": { "ids": ["*"] }, - "permissions": ["storage", "activeTab", "clipboardWrite", "clipboardRead"], + "permissions": ["activeTab", "clipboardWrite"], "background": { "service_worker": "background.bundle.js" }, diff --git a/devtool/src/_shared/components/Slices/Colors/Detail/index.tsx b/devtool/src/_shared/components/Slices/Colors/Detail/index.tsx index e140f567..a8c4dbbe 100644 --- a/devtool/src/_shared/components/Slices/Colors/Detail/index.tsx +++ b/devtool/src/_shared/components/Slices/Colors/Detail/index.tsx @@ -43,7 +43,7 @@ export const Detail: React.FC = () => { const { state } = route; const cardStyle = useStyle({ bg: state?.detailKey as Color }); - const bgColor = cardStyle['background']?.toString() || '#fff'; + const bgColor = cardStyle['backgroundColor']?.toString() || '#fff'; return (