QOwnNotes Web Companion

This is a companion extension for QOwnNotes to interact with the note taking desktop application.

Τι είναι το QOwnNotes Web Companion;

Το QOwnNotes Web Companion είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Patrizio Bekerle, και η κύρια λειτουργία του είναι "This is a companion extension for QOwnNotes to interact with the note taking desktop application.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης QOwnNotes Web Companion

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

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

                        QOwnNotes is the open source (GPL) plain-text file markdown note taking application for GNU/Linux, macOS and Windows, that (optionally) works together with the notes application of Nextcloud or ownCloud.

To use this extension QOwnNotes needs to be running.

Features:

- bookmark management with Markdown links in notes
    - for more information about the bookmarks feature please visit https://www.qownnotes.org/Knowledge-base/QOwnNotes-Web-Companion-browser-extension
- creating a new note (only text) from the current selection by right-clicking it
    - this is scriptable in QOwnNotes
- creating a new note from the content of the current webpage by right-clicking on the page
    - the html will be converted to markdown and images of the page will be downloaded (might take a while)
    - this is scriptable in QOwnNotes
- creating a new note with a screenshot of the visible part of the current webpage by right-clicking on the page
- you can change the server socket port in the extension *Option page*
- scriptable

## Permissions

- the extension uses the `tabs` permission that may be interpreted as permission to `Read your browsing history` to be able to store bookmarks for all open tabs in a window with a single click                    

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

Όνομα QOwnNotes Web Companion QOwnNotes Web Companion
ID pkgkfnampapjbopomdpnkckbjdnpkbkp
Επίσημο URL https://chromewebstore.google.com/detail/qownnotes-web-companion/pkgkfnampapjbopomdpnkckbjdnpkbkp
Περιγραφή This is a companion extension for QOwnNotes to interact with the note taking desktop application.
Μέγεθος Αρχείου 855 KB
Αριθμός Εγκαταστάσεων 1,365
Τρέχουσα Έκδοση 2024.2.4
Τελευταία Ενημέρωση 2024-02-10
Ημερομηνία Δημοσίευσης 2020-05-14
Αξιολόγηση 4.71/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Patrizio Bekerle
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.qownnotes.org/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/qownnotes/chrome-web-companion/issues
Υποστηριζόμενες Γλώσσες en,pt-BR,pt-PT,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QOwnNotes Web Companion",
    "short_name": "qownnotes",
    "description": "__MSG_appDescription__",
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/qownnotes\/web-companion",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/16x16\/apps\/QOwnNotes.png",
        "32": "icons\/32x32\/apps\/QOwnNotes.png",
        "48": "icons\/48x48\/apps\/QOwnNotes.png",
        "128": "icons\/128x128\/apps\/QOwnNotes.png"
    },
    "minimum_chrome_version": "88.0",
    "permissions": [
        "tabs",
        "activeTab",
        "contextMenus",
        "storage",
        "bookmarks",
        "scripting"
    ],
    "options_page": "www\/index.html#\/options",
    "action": {
        "default_popup": "www\/index.html#\/popup",
        "default_title": "QOwnNotes Web Companion"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "Command+B"
            }
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "assets\/content.css"
            ],
            "js": [
                "my-content-script.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "version": "2024.2.4"
}