Skip to content

Commit

Permalink
Updated chatGPTjsHostPath to media.chatgptjs.org URL ↞ [auto-sync f…
Browse files Browse the repository at this point in the history
…rom `adamlui/chatgpt-apps/chatgpt-widescreen/opera`]
  • Loading branch information
adamlui authored and kudo-sync-bot committed Sep 10, 2024
1 parent 4b45f9b commit d16cd61
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chrome/extension/popup/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
if (event.target === moreAddOnsSpan) moreAddOnsLink.click() } // to avoid double-toggle

// Add Powered by chatgpt.js hover-listener
const chatGPTjsHostPath = 'https://raw.githubusercontent.com/KudoAI/chatgpt.js/main/media/images/badges/',
const chatGPTjsHostPath = 'https://media.chatgptjs.org/images/badges/',
chatGPTjsImg = document.querySelector('.chatgpt-js img')
chatGPTjsImg.onmouseover = () => chatGPTjsImg.src = chatGPTjsHostPath + 'powered-by-chatgpt.js.png'
chatGPTjsImg.onmouseout = () => chatGPTjsImg.src = chatGPTjsHostPath + 'powered-by-chatgpt.js-faded.png'
Expand Down
2 changes: 1 addition & 1 deletion edge/extension/popup/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
if (event.target === moreAddOnsSpan) moreAddOnsLink.click() } // to avoid double-toggle

// Add Powered by chatgpt.js hover-listener
const chatGPTjsHostPath = 'https://raw.githubusercontent.com/KudoAI/chatgpt.js/main/media/images/badges/',
const chatGPTjsHostPath = 'https://media.chatgptjs.org/images/badges/',
chatGPTjsImg = document.querySelector('.chatgpt-js img')
chatGPTjsImg.onmouseover = () => chatGPTjsImg.src = chatGPTjsHostPath + 'powered-by-chatgpt.js.png'
chatGPTjsImg.onmouseout = () => chatGPTjsImg.src = chatGPTjsHostPath + 'powered-by-chatgpt.js-faded.png'
Expand Down
2 changes: 1 addition & 1 deletion opera/extension/popup/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
if (event.target === moreAddOnsSpan) moreAddOnsLink.click() } // to avoid double-toggle

// Add Powered by chatgpt.js hover-listener
const chatGPTjsHostPath = 'https://raw.githubusercontent.com/KudoAI/chatgpt.js/main/media/images/badges/',
const chatGPTjsHostPath = 'https://media.chatgptjs.org/images/badges/',
chatGPTjsImg = document.querySelector('.chatgpt-js img')
chatGPTjsImg.onmouseover = () => chatGPTjsImg.src = chatGPTjsHostPath + 'powered-by-chatgpt.js.png'
chatGPTjsImg.onmouseout = () => chatGPTjsImg.src = chatGPTjsHostPath + 'powered-by-chatgpt.js-faded.png'
Expand Down

0 comments on commit d16cd61

Please sign in to comment.