Tilda Unlocker
Unlocks unavailable Tilda editor blocks for free plans
什么是Tilda Unlocker?
Tilda Unlocker是由NightStranger开发的Chrome扩展程序,该扩展的主要功能是“Unlocks unavailable Tilda editor blocks for free plans”。
扩展截图
下载Tilda Unlocker扩展crx文件
下载Tilda Unlocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The extension allows you to unlock all blocks in the Tilda site editor
Source code - https://github.com/NightStrang6r/TildaUnlocker 扩展基本信息
| 名称 | |
| ID | knpphkffjenkoekokcdihbijgpcpbdkc |
| 官方URL | https://chromewebstore.google.com/detail/tilda-unlocker/knpphkffjenkoekokcdihbijgpcpbdkc |
| 简介 | Unlocks unavailable Tilda editor blocks for free plans |
| 文件大小 | 13.15 KB |
| 安装次数 | 263 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2022-03-18 |
| 上架时间 | 2022-03-14 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | NightStranger |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Tilda Unlocker",
"author": "NightStranger",
"description": "Unlocks unavailable Tilda editor blocks for free plans",
"version": "1.0.0",
"icons": {
"64": "logo.png"
},
"action": {
"default_icon": "logo.png",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/tilda.cc\/page\/",
"https:\/\/tilda.cc\/page\/*"
],
"js": [
"main.js"
]
}
],
"permissions": [
"storage",
"tabs"
],
"content_security_policy": {
"script-src": "self",
"object-src": "self"
}
} | |