Inline Decryptor
Per-URL wachtwoorden in een versleutelde kluis, met hoofdwachtwoord en auto-lock.
As of July 2026, Inline Decryptor has — users in the Productivity category.
Usersno change0%
—
—
Ratingno change0%
—
— reviews
Reviewsno change0%
—
Version
1.0
Manifest V3
History
1 snapshotsTracking since Jul 3, 2026.
Not enough history yet for this metric — the chart fills in as we collect more snapshots.
View as table
| Date | Users | Rating | Reviews | Version |
|---|---|---|---|---|
| Jul 3, 2026 | — | — | — | 1.0 |
| Now | — | — | — | 1.0 |
Permissions & access
- Permissions
- storagealarmsidleactiveTab
- Host access
- None declared
Screenshots
About
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
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>Technical
- Version
- 1.0
- Manifest
- V3
- Size
- 40.34KiB
- Min Chrome
- 88
- Languages
- 1
- Featured
- No
Metadata
- ID
- cofconfeopbbejigdghaiblmekojgdmk
- Developer ID
- udd614219af19bd2d334f7ea525675083
- Developer Email
- [email protected]
- Created
- Jul 2, 2026
- Last Updated (Store)
- Jul 2, 2026
- Last Scraped
- Jul 3, 2026
- Website
- —
- Support URL
- —
- Privacy Policy
- https://github.com/mvesch-lgtm/Inline-Decryptor
Data sourced from the Chrome Web Store · last verified Jul 3, 2026.