Shakespeare AI
Shakespeaere AI Extension
Shakespeare AIคืออะไร?
Shakespeare AI เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://shakespeare.ai และคุณลักษณะหลักของมันคือ "Shakespeaere AI Extension"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Shakespeare AI
ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
]
}
} | |