RemNote Clipper

Easily take notes to your RemNote account, from any webpage!

Τι είναι το RemNote Clipper;

Το RemNote Clipper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.remnote.io, και η κύρια λειτουργία του είναι "Easily take notes to your RemNote account, from any webpage!".

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

screenshot

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

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

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

                        Easily take spaced-repetition notes on any webpage with the RemNote extension. 


1) To save a URL to a "Links" folder, click on the extension icon.
2) Take quick notes on an open webpage using the “Save Note” popup.
3) Open the RemNote editor any time by clicking "Continue Editing"
4) Highlight text and click "Highlight" to save source text to an associated Document.

Article highlight saving, faster loading, page integration, and more coming soon! We’re excited to keep building here, and feedback is welcome.                    

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

Όνομα RemNote Clipper RemNote Clipper
ID ohidiiabdhnlgcaidgndbdbjlhngeboj
Επίσημο URL https://chromewebstore.google.com/detail/remnote-clipper/ohidiiabdhnlgcaidgndbdbjlhngeboj
Περιγραφή Easily take notes to your RemNote account, from any webpage!
Μέγεθος Αρχείου 309 KB
Αριθμός Εγκαταστάσεων 12,154
Τρέχουσα Έκδοση 1.5.07
Τελευταία Ενημέρωση 2023-07-19
Ημερομηνία Δημοσίευσης 2020-06-20
Αξιολόγηση 3.07/5 Συνολικά 41 Αξιολογήσεις
Προγραμματιστής https://www.remnote.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.remnote.com
Διεύθυνση URL της Σελίδας Βοήθειας https://www.remnote.com/help
URL της Σελίδας Πολιτικής Απορρήτου https://www.remnote.io/a/privacy-policy/cZQqixWtZtv49wNM9
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Easily take notes to your RemNote account, from any webpage!",
    "version": "1.5.07",
    "manifest_version": 3,
    "name": "RemNote Clipper",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "remnote-34.png"
    },
    "icons": {
        "128": "remnote-128.png"
    },
    "commands": {
        "highlightSelection": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "linux": "Ctrl+Shift+H",
                "mac": "Command+Shift+Y"
            },
            "description": "Highlight the current selection and open in sidebar"
        },
        "launchOmnibarF": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space"
            },
            "description": "Launch the RemNote omnibar"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "omnibar.html",
                "content.styles.css",
                "staging-128.png",
                "staging-34.png",
                "documentInject.html",
                "documentInject.js",
                "loadIframe.js",
                "documentInjector.js",
                "remNoteFunctionsInject.bundle.js",
                "documentInject.css",
                "sidebar.html",
                "sidebar.css",
                "loadIframeInject.bundle.js",
                "*.png",
                "*.svg",
                "*.css",
                "getContent.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "tabs",
        "webNavigation",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/www.remnote.com\/*",
        "https:\/\/alpha.remnote.com\/*",
        "https:\/\/beta.remnote.com\/*",
        "https:\/\/www.remnote.io\/*",
        "https:\/\/alpha.remnote.io\/*",
        "https:\/\/beta.remnote.io\/*",
        "http:\/\/localhost:3000\/*",
        "https:\/\/remnote-staging.herokuapp.com\/*",
        "",
        "https:\/\/google.com"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.remnote.com\/*",
                "https:\/\/alpha.remnote.com\/*",
                "https:\/\/beta.remnote.com\/*",
                "https:\/\/www.remnote.io\/*",
                "https:\/\/alpha.remnote.io\/*",
                "https:\/\/beta.remnote.io\/*",
                "http:\/\/localhost:3000\/*",
                "https:\/\/remnote-staging.herokuapp.com\/*"
            ],
            "js": [
                "remNoteInjectContentScript.bundle.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "remnoteInject": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "loadHighlights.bundle.js"
            ],
            "allTabs": true
        }
    ]
}