Tilda Unlocker
Unlocks unavailable Tilda editor blocks for free plans
What is Tilda Unlocker?
Tilda Unlocker is a Chrome extension developed by NightStranger, and its main feature is "Unlocks unavailable Tilda editor blocks for free plans".
Extension Screenshots
Download Tilda Unlocker Extension CRX File
Download Tilda Unlocker 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
The extension allows you to unlock all blocks in the Tilda site editor Source code - https://github.com/NightStrang6r/TildaUnlocker
Extension Basic Information
Name | Tilda Unlocker |
ID | knpphkffjenkoekokcdihbijgpcpbdkc |
Official URL | https://chromewebstore.google.com/detail/tilda-unlocker/knpphkffjenkoekokcdihbijgpcpbdkc |
Description | Unlocks unavailable Tilda editor blocks for free plans |
File Size | 13.15 KB |
Installation Count | 263 |
Current Version | 1.0.0 |
Last Updated | 2022-03-18 |
Publish Date | 2022-03-14 |
Rating | 5.00/5 Total 1 Ratings |
Developer | NightStranger |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |