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 |
| Eメール | [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\/*"
]
}
} | |