Tilda Unlocker
Unlocks unavailable Tilda editor blocks for free plans
Cos'è Tilda Unlocker?
Tilda Unlocker è un'estensione di Chrome sviluppata da NightStranger, e la sua funzione principale è "Unlocks unavailable Tilda editor blocks for free plans".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tilda Unlocker
Scarica i file di estensione Tilda Unlocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
The extension allows you to unlock all blocks in the Tilda site editor Source code - https://github.com/NightStrang6r/TildaUnlocker
Informazioni di Base sull'Estensione
Nome | Tilda Unlocker |
ID | knpphkffjenkoekokcdihbijgpcpbdkc |
URL Ufficiale | https://chromewebstore.google.com/detail/tilda-unlocker/knpphkffjenkoekokcdihbijgpcpbdkc |
Descrizione | Unlocks unavailable Tilda editor blocks for free plans |
Dimensione del File | 13.15 KB |
Conteggio Installazioni | 263 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2022-03-18 |
Data di Pubblicazione | 2022-03-14 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | NightStranger |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |