DapperGPT Chrome Extension
A Chrome extension to interact with GPT AI on various platforms.
Что такое DapperGPT Chrome Extension?
DapperGPT Chrome Extension - это расширение Chrome, разработанное https://dappergpt.com, и его основная функция - "A Chrome extension to interact with GPT AI on various platforms.".
Снимки экрана расширения
Скачать файл CRX расширения DapperGPT Chrome Extension
Скачайте файлы расширений DapperGPT Chrome Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Fill your Email, Twitter, Youtube and many other popular sites easily with AI (currently in Beta) Основная информация о расширении
| Название | |
| ID | opibaobahpmecdlkgifnombagoogbkmj |
| Официальный URL | https://chromewebstore.google.com/detail/dappergpt-chrome-extensio/opibaobahpmecdlkgifnombagoogbkmj |
| Описание | A Chrome extension to interact with GPT AI on various platforms. |
| Размер файла | 49.74 KB |
| Количество установок | 74 |
| Текущая Версия | 0.0.7 |
| Последнее Обновление | 2023-05-10 |
| Дата публикации | 2023-04-20 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | https://dappergpt.com |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://dappergpt.com |
| URL страницы помощи | https://dappergpt.com/settings?menu=roadmap&tab=support |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "DapperGPT Chrome Extension",
"version": "0.0.7",
"description": "A Chrome extension to interact with GPT AI on various platforms.",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"180": "icons\/icon180.png",
"192": "icons\/icon192.png"
},
"permissions": [
"activeTab",
"storage",
"scripting"
],
"action": {
"default_icon": "icons\/icon180.png",
"default_popup": "src\/popup.html"
},
"background": {
"service_worker": "dist\/background.js"
},
"commands": {
"executeOpenMiniOptions": {
"suggested_key": {
"mac": "Command+Shift+P",
"windows": "Ctrl+Shift+P",
"linux": "Ctrl+Shift+P"
},
"description": "Open DapperGPT Popup"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/*.gmail.com\/*",
"https:\/\/mail.google.com\/*",
"https:\/\/*.twitter.com\/*",
"https:\/\/*.facebook.com\/*",
"https:\/\/*.reddit.com\/*",
"https:\/\/*.producthunt.com\/*",
"https:\/\/*.instagram.com\/*",
"https:\/\/*.whatsapp.com\/*",
"https:\/\/*.telegram.org\/*",
"https:\/\/*.slack.com\/*",
"https:\/\/*.trello.com\/*",
"https:\/\/*.tumblr.com\/*",
"https:\/\/*.pinterest.com\/*",
"https:\/\/*.youtube.com\/*",
"https:\/\/*.linkedin.com\/*",
"https:\/\/*.quora.com\/*",
"https:\/\/*.medium.com\/*"
],
"js": [
"dist\/content.js"
],
"css": [
"css\/pre.css",
"css\/content.css",
"css\/output.css"
]
}
],
"host_permissions": [
"https:\/\/dappergpt.com\/*",
"https:\/\/*.dappergpt.com\/*",
"https:\/\/*.usegpt.ai\/*",
"https:\/\/*.localhost:3000\/*"
],
"externally_connectable": {
"ids": [
"*"
],
"matches": [
"https:\/\/dappergpt.com\/*",
"http:\/\/localhost:3000\/*",
"*:\/\/*.chromium.org\/*"
]
}
} | |