Yes it is @ https://github.com/adamlui/chatgpt-widescreen/blob/main/firefox/extension/manifest.json
{
"manifest_version": 3,
"name": "__MSG_appName__",
"short_name": "ChatGPT 🖥️",
"description": "__MSG_appDesc__",
"version": "2024.11.12",
"author": "Adam Lui",
"homepage_url": "https://www.chatgptwidescreen.com",
"default_locale": "en",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png",
"223": "icons/icon223.png"
},
"permissions": [ "activeTab", "storage" ],
"action": { "default_popup": "popup/index.html" },
"web_accessible_resources": [{
"matches": [ "<all_urls>" ],
"resources": [ "lib/chatgpt.js", "lib/dom.js", "lib/settings.js" ]
}],
"content_scripts": [{
"matches": [ "https://chatgpt.com/*", "https://www.perplexity.ai/*", "https://poe.com/*" ],
"run_at": "document_end", "js": [ "content.js" ]
}],
"background": { "scripts": [ "background.js" ]},
"browser_specific_settings": {
"gecko": {
"id": "chatgpt.widescreen@chatgptevo.com",
"strict_min_version": "109.0"
}
}
}
No I don’t believe so
I tested using both <all_urls>
and https://chatgpt.com/*
for host_permissions
but no dice
Indeed the root domain is chatpgt.com, also same new problem occurs on perplexity.ai
My content_scripts
includes matches
for all 3 AI sites the content.js is intended to run on (and has always worked until sometime past week or longer)