Private Notes

Private Notes gives you safe and fully encrypted place for your Top Secret notes!

Τι είναι το Private Notes;

Το Private Notes είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://fastaddons.com, και η κύρια λειτουργία του είναι "Private Notes gives you safe and fully encrypted place for your Top Secret notes!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Private Notes

Λήψη αρχείων επέκτασης Private Notes σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Private Notes is ideal for storing the most sensitive information like Recovery codes, Wi-Fi passwords, server configs, etc...

Why?
Let's start with Privacy and permissions:
- There are no permissions - this extension can't make any remote requests or submit any data!
- This extension is NOT using own cloud servers, data are synchronized by browser-integrated "Chrome Sync" engine (encrypted).
- Your password is NOT stored at all. It's hashed (something like a fingerprint) using advanced PBKDF2 function with 100k iterations and strong salt.
- Unlocked notes and decryption keys are never stored - they are only kept in the private system memory and will disappear the moment you close browser.
- Even if someone gains physical access to your PC, he won't be able to access your notes nor password. This is one of the safest place ever created!

Top features:
- Encrypted notes - all your notes are always stored encrypted!
- Automatic backups - each device creates encrypted local backups of your notes (plus "Chrome Sync" holds a backup)
- No need to create additional account - Chrome Sync will handle synchronization
- Advanced Text Editor - supports many advanced text features
- Code highlight for many popular languages and configs
- Compression - all notes are compressed to save space
- Auto-lock - will help you keep your notes locked when you leave your PC

Limitations of Chrome Sync engine:
- Chrome Sync can handle only 100KB of data - so you can't store huge notes. However thanks to build in compression, you should be able to store more than 100,000 characters of text.
- Single note only 8KB size limit - each note can have only up to 8,000 characters - again thanks to compression this should be more.

Support independent developer:
- I'm full-time extension developer and your donations is my only income. There are no ads in my extensions!
- Please support my work by:
    - Buy me a coffee - https://ko-fi.com/fastaddons
    - PayPal donation - https://paypal.me/fastaddons/
    - be my Patron - https://liberapay.com/juraj.masiar/

Thank you! :)
Your donation will help me keep this extension working in future versions of Chrome!

The list of Recently added features can be found here:
https://addons.mozilla.org/en-US/firefox/addon/private_notes/versions/                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Private Notes Private Notes
ID phckehehoioleicpfnmigmidofibnnnn
Επίσημο URL https://chromewebstore.google.com/detail/private-notes/phckehehoioleicpfnmigmidofibnnnn
Περιγραφή Private Notes gives you safe and fully encrypted place for your Top Secret notes!
Μέγεθος Αρχείου 2.32 MB
Αριθμός Εγκαταστάσεων 1,350
Τρέχουσα Έκδοση 4.2
Τελευταία Ενημέρωση 2022-04-19
Ημερομηνία Δημοσίευσης 2020-06-28
Αξιολόγηση 4.67/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής https://fastaddons.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://fastaddons.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/fastaddons/PrivateNotes/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/fastaddons/privacy_policy
Υποστηριζόμενες Γλώσσες id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "4.2",
    "author": "Juraj M\u00e4siar",
    "default_locale": "en",
    "name": "__MSG_app_name__",
    "description": "__MSG_app_desc__",
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "background": {
        "service_worker": "background.loader.js"
    },
    "action": {
        "default_icon": {
            "128": "128.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "open_editor": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Open Private Notes in popup window."
        },
        "open_new_tab": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            },
            "description": "Open Private Notes in new tab."
        }
    },
    "permissions": [
        "alarms",
        "storage"
    ],
    "incognito": "split"
}