Ein kostenloses, werbefreies, schnelles Add-on für ChatGPT auf der deutschen Community-Seite mit Links zu Top-Websites.
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": "GPT Deutschland Assistent",
"version": "1.1",
"description": "Ein kostenloses, werbefreies, schnelles Add-on für ChatGPT auf der deutschen Community-Seite mit Links zu Top-Websites.",
"browser_action": {
"default_popup": "new_tab.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"background": {
"scripts": [
"background.js"
]
},
"chrome_url_overrides": {
"newtab": "new_tab.html"
},
"content_scripts": [
{
"matches": [
"https://chat-gpt-deutschland.de/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{d90aa142-7d5a-4137-a9ee-5983acf13521}"
}
}
}