Inspect and view changes in TechBot - Chat with Documentation 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "TechBot - Chat with Documentation",
"description": "TechBot: Enhance Angular, React, Next, Nest and Kubernetes doc search with natural language queries & instant accurate answers",
"version": "2.2",
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"content_scripts": [
{
"js": [
"scripts/helper.js",
"scripts/content.js",
"scripts/external/showdown.min.js",
"scripts/external/prism.js",
"scripts/external/prism-line-numbers.js",
"scripts/external/uuid.js"
],
"matches": [
"https://angular.io/*",
"https://react.dev/*",
"https://nestjs.com/*",
"https://nextjs.org/*",
"https://kubernetes.io/*"
],
"css": [
"css/style.css",
"scripts/external/prism.css",
"scripts/external/prism-line-numbers.css"
]
}
]
}