Allows using ChatGPT as a search engine from the address bar.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "ChatGPT Deeplink",
"version": "1.0.3",
"description": "Allows you to use ChatGPT as a search engine.",
"permissions": [
"tabs"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "/img/icon/icon16.png",
"48": "/img/icon/icon48.png",
"128": "/img/icon/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"*://chatgpt.com/*"
],
"js": [
"content.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{4f7a7729-154a-4833-b082-50c47a6fa49f}"
}
}
}