Shakespeare AI
Shakespeaere AI Extension
Cos'è Shakespeare AI?
Shakespeare AI è un'estensione di Chrome sviluppata da https://shakespeare.ai, e la sua funzione principale è "Shakespeaere AI Extension".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Shakespeare AI
Scarica i file di estensione Shakespeare AI in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | lfmpllalnonamhdnepkhkggljglejlng |
| URL Ufficiale | https://chromewebstore.google.com/detail/shakespeare-ai/lfmpllalnonamhdnepkhkggljglejlng |
| Descrizione | Shakespeaere AI Extension |
| Dimensione del File | 20.98 KB |
| Conteggio Installazioni | 82 |
| Versione Corrente | 5.0 |
| Ultimo Aggiornamento | 2023-03-14 |
| Data di Pubblicazione | 2023-02-18 |
| Sviluppatore | https://shakespeare.ai |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://www.shakespeare.ai/ |
| URL della Pagina di Aiuto | https://www.shakespeare.ai/help-and-support/ |
| URL della Pagina della Politica sulla Privacy | https://www.shakespeare.ai/privacy-policy |
| Lingue Supportate | 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\/*"
]
}
} | |