ChatGPTx
Shortcut to ChatGPT to help you with your daily tasks
Was ist ChatGPTx?
ChatGPTx ist eine Chrome-Erweiterung, die von ph.becking entwickelt wurde, und ihr Hauptmerkmal ist "Shortcut to ChatGPT to help you with your daily tasks".
Erweiterungsscreenshots
ChatGPTx-Erweiterungs-CRX-Datei herunterladen
Laden Sie ChatGPTx-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Select something in your Chrome browser and use right-click to see the explanation of the selected phrase. Enjoy!
Cheers, Jap and Piet
Note: This is still the Beta version. Any feedback would be highly appreciated and can be submitted via the following link: https://sites.google.com/view/chatgptx/ Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bcekompknmefbgdhaionajkpcehbhkbk |
| Offizielle URL | https://chromewebstore.google.com/detail/chatgptx/bcekompknmefbgdhaionajkpcehbhkbk |
| Beschreibung | Shortcut to ChatGPT to help you with your daily tasks |
| Dateigröße | 17.68 KB |
| Installationsanzahl | 372 |
| Aktuelle Version | 0.1.1 |
| Letztes Update | 2023-01-29 |
| Veröffentlichungsdatum | 2023-01-19 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | ph.becking |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ChatGPTx",
"version": "0.1.1",
"icons": {
"16": "assets\/ext-icon.png",
"32": "assets\/ext-icon.png",
"48": "assets\/ext-icon.png",
"128": "assets\/ext-icon.png"
},
"description": "Shortcut to ChatGPT to help you with your daily tasks",
"permissions": [
"storage",
"contextMenus",
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"contentScript.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/bookmark.png",
"assets\/play.png",
"assets\/delete.png",
"assets\/save.png"
],
"matches": [
"https:\/\/*\/*"
]
}
],
"action": {
"default_icon": {
"16": "assets\/ext-icon.png",
"24": "assets\/ext-icon.png",
"32": "assets\/ext-icon.png"
},
"default_title": "ChatGPTx Extension",
"default_popup": "popup.html"
},
"manifest_version": 3
} | |