*БЕЗОПАСНО* премахнете 10-минутни нулирания на чата, *постоянни мрежови грешки* и проверки на Cloudflare от ChatGPT.
Това са всички версии на скрипта. Покажи само тези версии, където кодът е променен.
Added live update navicon on scheme change, moved stylization from toggles.sidebar.insert() to .create() for centralization ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
toggles.sidebar.insert()
.create()
Consolidated sidebar toggle hover listener inits for simplicity ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Restored sidebar toggle hover overlay ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Abstracted toggles.sidebar.ids ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
toggles.sidebar.ids
Added missing app.cssPrefix ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
app.cssPrefix
Moved modal stylization to modals.stylize() for modularity ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
modals.stylize()
Re-ordered modals function defs for readability ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
modals
Bumped JS/CSS resources ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Inserted app.cssPrefix into static navicon.id + knobSpan.id in toggles.sidebar ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
navicon.id
knobSpan.id
toggles.sidebar
Added/updated app.latestAssetCommitHash comments ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
app.latestAssetCommitHash
Abstracted app.cssPrefix for easier maintenance ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Moved sidebarToggle to toggles.sidebar for future expandability ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
sidebarToggle
Renamed sidebarToggle.update() to .updateState() for readability ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
sidebarToggle.update()
.updateState()
Restored checkForUpdates() name to updateCheck() to avoid endless recursion for sharing name w/ modals.update.available() btn callback func ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
checkForUpdates()
updateCheck()
modals.update.available()
Replaced all this.alert() w/ modals.alert() to avoid potential namespace conflicts w/ window.alert() ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
this.alert()
modals.alert()
window.alert()
Moved siteAlert() into modals for simplicity, added initting for styling/listeners ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
siteAlert()
Abstracted modals.class ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
modals.class
Renamed stylesheet @resources into exactly matching acronyms for readability ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
@resource
Bumped app.latestAsseCommitHash ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
app.latestAsseCommitHash
Trigger messages.json sync ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Added eslint-disable-line to overcome no-unused-vars bug (https://github.com/eslint/eslint/issues/19215) ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
eslint-disable-line
no-unused-vars
Renamed updateCheck() to clearer checkForUpdates() ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Expanded early return in menu.fresh() to all userscript managers that don't support GM_unregisterMenuCommand ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
menu.fresh()
GM_unregisterMenuCommand
Replaced GM_info.script.header in app.chatgptJSver init w/ more widely supported GM_info.scriptMetaStr ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
GM_info.script.header
app.chatgptJSver
GM_info.scriptMetaStr
Expanded XHR init to pick GM_xmlhttpRequest for all userscript managers that don't support GM.xmlHttpRequest ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
GM_xmlhttpRequest
GM.xmlHttpRequest
Moved Update alerts inside modals to support dragging + add rising stars ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Added stylesheet requirement comment to fillStarryBG() sig ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
fillStarryBG()
Condensed View Changes link generation in Update Available alert ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Corrected changelog URL in Update Available modal ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Replaced dismissAlert() in comments w/ natural lang to avoid confusion since def in chatgpt.js ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Bumped rising-stars.css ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Added modal stack tracking ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Replaced btnClone.textContent w/ btn.textContent in dismissal stripper for readability ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
btnClone.textContent
btn.textContent
Added toggle existence check to sidebarToggle.update() for cleaner console when sidebar missing ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Replaced string concatenation w/ template literals in modals.about.show() for readability ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
modals.about.show()
Prevented link buttons from auto-dismissing modals ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Corrected Donate menu entry target from About to Donate modal ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Moved chatgptJSver into app + added app.version ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
chatgptJSver
app
app.version
Fixed sidebar toggle doesn't animate on load if already activated ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Restored custom attr get/set target to seemingly more reliable document.documentElement ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
document.documentElement
Moved custom attr set/get from document.documentElement to more reliable document.head ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
document.head
Renamed modals.init() to more accurate .setup() ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
modals.init()
.setup()
Moved ui into env for better readability ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
ui
env
Renamed UI sync function's reason option to more semantic updatedKey ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
reason
updatedKey
Shortened settings.load() arg name ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
settings.load()
Added eslint-disable-line after required semicolon (https://github.com/eslint-stylistic/eslint-stylistic/issues/622) ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Removed no-longer used elem ID inits ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Improved sidebar toggle methods efficiency ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Prepended app.symbol to About modal title ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
app.symbol
Added starry BG + click-dragabiility to modals ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions]
Покажи всички версии на скрипта.