DapperGPT Chrome Extension
A Chrome extension to interact with GPT AI on various platforms.
什么是DapperGPT Chrome Extension?
DapperGPT Chrome Extension是由https://dappergpt.com开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension to interact with GPT AI on various platforms.”。
扩展截图
下载DapperGPT Chrome Extension扩展crx文件
下载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\/*"
]
}
} | |