Symplify Editor
Runs Symplify editor on any website without implementing it in source code
Vad är Symplify Editor?
Symplify Editor är en Chrome-tillägg utvecklad av https://sitegainer.com, och dess huvudfunktion är "Runs Symplify editor on any website without implementing it in source code".
Tilläggsskärmbilder
Ladda ner Symplify Editor-förlängningens CRX-fil
Ladda ner Symplify Editor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
https://symplify.com/privacy-policy/ Grundläggande Information om Tillägg
| Namn | |
| ID | ioobandlchlacjdggpppmbiinfikgcmc |
| Officiell webbadress | https://chromewebstore.google.com/detail/symplify-editor/ioobandlchlacjdggpppmbiinfikgcmc |
| Beskrivning | Runs Symplify editor on any website without implementing it in source code |
| Filstorlek | 31.36 KB |
| Antal Installationer | 297 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2022-12-05 |
| Publiceringsdatum | 2018-01-26 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | https://sitegainer.com |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://symplify.com/privacy-policy |
| Stödda Språk | 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": [
"*:\/\/*\/*"
]
}
]
} | |