Outline: quick notes

An extension that let you save you quick notes while browsing

Τι είναι το Outline: quick notes;

Το Outline: quick notes είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://shubhamverma.dev, και η κύρια λειτουργία του είναι "An extension that let you save you quick notes while browsing".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Outline: quick notes

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

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

                        Outline help you to save quick notes while browsing on the internet.

The process for taking notes with outline is simple. You simply need to install the extension. And start adding whatever you like on the internet. This project I created for my personal use but later I realise it can be used by anyone. So here it is available for everyone.

Why Outline?
1. Privacy focused. The data can only read by you only. Its between you and your browser. Code is open sourced. So you can always look whats going. No one can recover your info. If it's gone, it's gone
2. Rich text formatting allowed. You can highlight according to your convenience.
3. Less clutter info: Not everything you read should be in your notes. Sometimes you just need some pointer which you can review later. You can think outline as quick draft which you can save  all your info anywhere you want
4. Easy to find whatever you type

Note: This extension rely chrome storage api. So it has its own limitation. If you do not need any specific notes, delete it. So that it does not give your storage warning. More you can read here: https://developer.chrome.com/docs/extensions/reference/storage/#property-local

And much more feature will come soon...

If you want new feature request or found any bug. Feel free to open ticket here: https://github.com/shubhamV123/outline                    

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

Όνομα Outline: quick notes Outline: quick notes
ID jnjimmfigcmfgpnkejeegliidonlefdf
Επίσημο URL https://chromewebstore.google.com/detail/outline-quick-notes/jnjimmfigcmfgpnkejeegliidonlefdf
Περιγραφή An extension that let you save you quick notes while browsing
Μέγεθος Αρχείου 235 KB
Αριθμός Εγκαταστάσεων 181
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2022-03-22
Ημερομηνία Δημοσίευσης 2022-03-20
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://shubhamverma.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/shubhamV123/outline
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/shubhamV123/outline
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Outline: quick notes",
    "description": "An extension that let you save you quick notes while browsing",
    "version": "1.1.0",
    "manifest_version": 3,
    "action": {
        "default_title": "Click me",
        "default_popup": "index.html"
    },
    "icons": {
        "48": "chrome_icons\/Outline64.png",
        "128": "chrome_icons\/Outline128.png",
        "192": "chrome_icons\/Outline192.png",
        "256": "chrome_icons\/Outline256.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "service_worker": "background.js"
    }
}