Symplify Editor
Runs Symplify editor on any website without implementing it in source code
Was ist Symplify Editor?
Symplify Editor ist eine Chrome-Erweiterung, die von https://sitegainer.com entwickelt wurde, und ihr Hauptmerkmal ist "Runs Symplify editor on any website without implementing it in source code".
Erweiterungsscreenshots
Symplify Editor-Erweiterungs-CRX-Datei herunterladen
Laden Sie Symplify Editor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
https://symplify.com/privacy-policy/
Grundlegende Informationen zur Erweiterung
Name | |
ID | ioobandlchlacjdggpppmbiinfikgcmc |
Offizielle URL | https://chromewebstore.google.com/detail/symplify-editor/ioobandlchlacjdggpppmbiinfikgcmc |
Beschreibung | Runs Symplify editor on any website without implementing it in source code |
Dateigröße | 31.36 KB |
Installationsanzahl | 297 |
Aktuelle Version | 1.1 |
Letztes Update | 2022-12-05 |
Veröffentlichungsdatum | 2018-01-26 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://sitegainer.com |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://symplify.com/privacy-policy |
Unterstützte Sprachen | 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": [ "*:\/\/*\/*" ] } ] } |