Shakespeare AI
Shakespeaere AI Extension
什么是Shakespeare AI?
Shakespeare AI是由https://shakespeare.ai开发的Chrome扩展程序,该扩展的主要功能是“Shakespeaere AI Extension”。
扩展截图
下载Shakespeare AI扩展crx文件
下载Shakespeare AI扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension serves as a tool for Shakespeare users to create ad groups in which they'd like to create copy for using our generative AI solution. 扩展基本信息
| 名称 | |
| ID | lfmpllalnonamhdnepkhkggljglejlng |
| 官方URL | https://chromewebstore.google.com/detail/shakespeare-ai/lfmpllalnonamhdnepkhkggljglejlng |
| 简介 | Shakespeaere AI Extension |
| 文件大小 | 20.98 KB |
| 安装次数 | 82 |
| 当前版本 | 5.0 |
| 更新时间 | 2023-03-14 |
| 上架时间 | 2023-02-18 |
| 开发者 | https://shakespeare.ai |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.shakespeare.ai/ |
| 帮助页面URL | https://www.shakespeare.ai/help-and-support/ |
| 隐私政策页面URL | https://www.shakespeare.ai/privacy-policy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Shakespeare AI",
"description": "Shakespeaere AI Extension",
"version": "5.0",
"permissions": [
"scripting",
"activeTab",
"storage"
],
"action": {
"default_popup": "index.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/ads.google.com\/*",
"https:\/\/business.facebook.com\/*"
],
"js": [
".\/content.js"
],
"css": [
".\/content.css"
],
"run_at": "document_start"
}
],
"icons": {
"16": "\/images\/shakespeare-img.png",
"32": "\/images\/shakespeare-img.png",
"48": "\/images\/shakespeare-img.png",
"128": "\/images\/shakespeare-img.png"
},
"web_accessible_resources": [
{
"resources": [
"\/images\/g-loader.svg",
"\/images\/shakepeare-icon.svg",
"\/images\/shakespeare-img.png",
"\/images\/extension-img.png"
],
"matches": [
"https:\/\/ads.google.com\/*",
"https:\/\/business.facebook.com\/*"
],
"use_dynamic_url": true
}
],
"background": {
"service_worker": "background.js"
},
"externally_connectable": {
"matches": [
"https:\/\/*.google.com\/*",
"https:\/\/localhost:4200\/*",
"https:\/\/*.shakespeare.ai\/*",
"https:\/\/business.facebook.com\/*"
]
}
} | |