Inspect and view changes in OpenGPTs - for Copilot and Bing Chat source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "OpenGPTs - for Copilot and Bing Chat",
"description": "Create, share, and chat with GPTs for free inside Copilot and Bing Chat.",
"version": "1.2.5",
"manifest_version": 3,
"default_locale": "en",
"permissions": [
"activeTab",
"storage",
"identity"
],
"host_permissions": [
"https://www.bing.com/*",
"https://copilot.microsoft.com/"
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"https://www.bing.com/*",
"https://copilot.microsoft.com/"
],
"js": [
"lib/jquery.min.js",
"lib/swiper-bundle.min.js",
"lib/api.js",
"lib/assistantDetails.js",
"content-scripts/content.js"
]
},
{
"matches": [
"https://copilot.microsoft.com/*"
],
"css": [
"public/hide.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images/*.png",
"images/*.svg",
"lib/*.js"
],
"matches": [
"https://www.bing.com/*",
"https://copilot.microsoft.com/*"
]
},
{
"resources": [
"public/*.html",
"public/*.css",
"public/*.js"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}