Symplify Editor
Runs Symplify editor on any website without implementing it in source code
What is Symplify Editor?
Symplify Editor is a Chrome extension developed by https://sitegainer.com, and its main feature is "Runs Symplify editor on any website without implementing it in source code".
Extension Screenshots
Download Symplify Editor Extension CRX File
Download Symplify Editor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
https://symplify.com/privacy-policy/
Extension Basic Information
Name | |
ID | ioobandlchlacjdggpppmbiinfikgcmc |
Official URL | https://chromewebstore.google.com/detail/symplify-editor/ioobandlchlacjdggpppmbiinfikgcmc |
Description | Runs Symplify editor on any website without implementing it in source code |
File Size | 31.36 KB |
Installation Count | 297 |
Current Version | 1.1 |
Last Updated | 2022-12-05 |
Publish Date | 2018-01-26 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://sitegainer.com |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://symplify.com/privacy-policy |
Supported Languages | 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": [ "*:\/\/*\/*" ] } ] } |