Inline Decryptor
Overview
Per-URL passwords in an encrypted vault, with a master password and auto-lock.
This extension reveals text that has been encrypted with a per-URL password, directly on the page. Encrypted messages (for example on a forum) are decrypted locally and shown as readable text, without the password ever entering the web page. Features:- Per-URL passwords in a local, encrypted vault (AES-GCM).- A single master password unlocks the vault; the master password is never stored.- Automatic locking after a set time and when you are away.- Encrypt and decrypt text yourself via a separate window.- Export and import an encrypted backup, protected with a password you choose.- Dutch and English interface. Privacy:- Fully offline. No data is collected, shared, or sent to any server.- No account, no tracking, no ads.- All data stays encrypted on your own device. Key derivation with PBKDF2 (SHA-256, 310,000 iterations) and AES-GCM 256-bit encryption, entirely in the browser Changes: V1.2 added options to add custom encrptions also for example: <encrypt-tekst-excrypt custom="example">w2CXXy9dcKSvsgYPyYiJmmYqTpnaKW2F4d6IjR9mD7o=</encrypt-tekst-excrypt> here the is added custom="example" that means there is a custom key under te name "example" the decrypt key for this is "test" (the encrypted tekst aso results n test) So they can be used along side the normal webpage key also v1.1: Added option to use a pass per subfolder so you an use more then 1 password the like when you have for example: http://www.test.com/subpage1 http://www.test.com/subpage2 you basicly can set a pass for test.com for subpage1 and subpage2 Added a option replace the encrypted text with a nicer text when locked(you an toggle it on/off) Aldded a option to turn it off and on so it doesn't replace the encrypted text when loading. Added in edit text field when it has a encrypted text tag when you haver over the encrypted text and it is unlocked that it shows in a hove the decrypted text example with php: Encrypt_Function.php: <?php function encryptData($text, $wachtwoord) { $key = hash('sha256', $wachtwoord, true); $iv = openssl_random_pseudo_bytes(12); $tag = ""; $encrypted = openssl_encrypt($text, 'aes-256-gcm', $key, OPENSSL_RAW_DATA, $iv, $tag); $output = base64_encode($iv . $tag . $encrypted); return "<encrypt-tekst-excrypt>" . $output . "</encrypt-tekst-excrypt>"; } ?> settings.php: <?php $wachtwoord = "mijn-geheime-wachtwoord"; ?> <?php include_once 'settings.php'; include_once 'Encrypt_Function.php'; ?> <div> <br><?php echo encryptData("Direct in regel", $wachtwoord); ?> </div>
0 out of 5No ratings
Details
- Version1.2
- UpdatedJuly 7, 2026
- Offered bymve
- Size51.92KiB
- LanguagesEnglish
- Developer
Email
mvesch@gmail.com - Non-traderThis developer has not identified itself as a trader. For consumers in the European Union, please note that consumer rights do not apply to contracts between you and this developer.
Privacy
This developer declares that your data is
- Not being sold to third parties, outside of the approved use cases
- Not being used or transferred for purposes that are unrelated to the item's core functionality
- Not being used or transferred to determine creditworthiness or for lending purposes