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 |
| 官方網址 | 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\/*"
]
}
} | |