Shakespeare AI
Shakespeaere AI Extension
Wat is Shakespeare AI?
Shakespeare AI is een Chrome-extensie ontwikkeld door https://shakespeare.ai, en de belangrijkste functie is "Shakespeaere AI Extension".
Extensie Screenshots
Download het CRX-bestand van de extensie Shakespeare AI
Download Shakespeare AI-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | lfmpllalnonamhdnepkhkggljglejlng |
| Officiële URL | https://chromewebstore.google.com/detail/shakespeare-ai/lfmpllalnonamhdnepkhkggljglejlng |
| Beschrijving | Shakespeaere AI Extension |
| Bestandsgrootte | 20.98 KB |
| Aantal Installaties | 82 |
| Huidige Versie | 5.0 |
| Laatst Bijgewerkt | 2023-03-14 |
| Publicatiedatum | 2023-02-18 |
| Ontwikkelaar | https://shakespeare.ai |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://www.shakespeare.ai/ |
| Help Pagina-URL | https://www.shakespeare.ai/help-and-support/ |
| URL van de Privacybeleid Pagina | https://www.shakespeare.ai/privacy-policy |
| Ondersteunde Talen | 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\/*"
]
}
} | |