Symplify Editor
Runs Symplify editor on any website without implementing it in source code
什麼是Symplify Editor?
Symplify Editor是由https://sitegainer.com開發的Chrome擴展程式,該擴展的主要功能是“Runs Symplify editor on any website without implementing it in source code”。
擴展截圖
下載Symplify Editor擴展crx文件
下載Symplify Editor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
https://symplify.com/privacy-policy/ 擴展基本資訊
| 名稱 | |
| ID | ioobandlchlacjdggpppmbiinfikgcmc |
| 官方網址 | https://chromewebstore.google.com/detail/symplify-editor/ioobandlchlacjdggpppmbiinfikgcmc |
| 簡介 | Runs Symplify editor on any website without implementing it in source code |
| 檔案大小 | 31.36 KB |
| 安裝次數 | 297 |
| 目前版本 | 1.1 |
| 更新時間 | 2022-12-05 |
| 上架時間 | 2018-01-26 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | https://sitegainer.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 隱私政策頁面URL | https://symplify.com/privacy-policy |
| 支援的語言 | 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": [
"*:\/\/*\/*"
]
}
]
} | |