diff --git a/starters/chrome/extension/lib/chatgpt.js b/starters/chrome/extension/lib/chatgpt.js index 219a0cf44..c071e6d0c 100644 --- a/starters/chrome/extension/lib/chatgpt.js +++ b/starters/chrome/extension/lib/chatgpt.js @@ -127,8 +127,9 @@ const chatgpt = { // eslint-disable-line no-redeclare + 'background-color: ' + ( scheme == 'dark' ? '#00cfff' : '#9cdaff' ) + ';' + 'box-shadow: 2px 1px ' + ( scheme == 'dark' ? '54px #00cfff' : '30px #9cdaff' ) + '}' + '.modal-close-btn {' - + 'cursor: pointer ; width: 20px ; height: 20px ; float: right ; position: relative ; right: -2px }' - + '.modal-close-btn svg { margin: 5px 5px }' // center SVG for hover overlay + + 'cursor: pointer ; width: 29px ; height: 29px ; border-radius: 17px ;' + + 'float: right ; position: relative ; right: -6px ; top: -5px }' + + '.modal-close-btn svg { margin: 10px }' // center SVG for hover underlay + `.modal-close-btn:hover { background-color: #f2f2f2${ scheme == 'dark' ? '00' : '' }}` // Checkbox styles diff --git a/starters/chrome/extension/manifest.json b/starters/chrome/extension/manifest.json index faa793f75..c37daed34 100644 --- a/starters/chrome/extension/manifest.json +++ b/starters/chrome/extension/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "ChatGPT Extension", "description": "A Chrome template to start using chatgpt.js like a boss!", - "version": "2024.6.5", + "version": "2024.6.6", "author": "chatgpt.js", "icons": { "16": "icons/icon16.png",