Tilda Unlocker
Unlocks unavailable Tilda editor blocks for free plans
Wat is Tilda Unlocker?
Tilda Unlocker is een Chrome-extensie ontwikkeld door NightStranger, en de belangrijkste functie is "Unlocks unavailable Tilda editor blocks for free plans".
Extensie Screenshots
Download het CRX-bestand van de extensie Tilda Unlocker
Download Tilda Unlocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
The extension allows you to unlock all blocks in the Tilda site editor Source code - https://github.com/NightStrang6r/TildaUnlocker
Basisinformatie over de Extensie
Naam | Tilda Unlocker |
ID | knpphkffjenkoekokcdihbijgpcpbdkc |
Officiële URL | https://chromewebstore.google.com/detail/tilda-unlocker/knpphkffjenkoekokcdihbijgpcpbdkc |
Beschrijving | Unlocks unavailable Tilda editor blocks for free plans |
Bestandsgrootte | 13.15 KB |
Aantal Installaties | 263 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2022-03-18 |
Publicatiedatum | 2022-03-14 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | NightStranger |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |