Symplify Editor
Runs Symplify editor on any website without implementing it in source code
Cos'è Symplify Editor?
Symplify Editor è un'estensione di Chrome sviluppata da https://sitegainer.com, e la sua funzione principale è "Runs Symplify editor on any website without implementing it in source code".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Symplify Editor
Scarica i file di estensione Symplify Editor 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
https://symplify.com/privacy-policy/ Informazioni di Base sull'Estensione
| Nome | |
| ID | ioobandlchlacjdggpppmbiinfikgcmc |
| URL Ufficiale | https://chromewebstore.google.com/detail/symplify-editor/ioobandlchlacjdggpppmbiinfikgcmc |
| Descrizione | Runs Symplify editor on any website without implementing it in source code |
| Dimensione del File | 31.36 KB |
| Conteggio Installazioni | 297 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2022-12-05 |
| Data di Pubblicazione | 2018-01-26 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | https://sitegainer.com |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina della Politica sulla Privacy | https://symplify.com/privacy-policy |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Symplify Editor",
"version": "1.1",
"manifest_version": 2,
"description": "Runs Symplify editor on any website without implementing it in source code",
"homepage_url": "https:\/\/symplify.com",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_title": "Set custom id"
},
"permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"content_scripts": [
{
"js": [
"src\/inject\/inject.js"
],
"run_at": "document_end",
"matches": [
"*:\/\/*\/*"
]
}
]
} | |