markdown-clipper

A webclipper to download sites in markdown format. It is not guaranteed to work with all websites.

Τι είναι το markdown-clipper;

Το markdown-clipper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kaack.enrico, και η κύρια λειτουργία του είναι "A webclipper to download sites in markdown format. It is not guaranteed to work with all websites.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης markdown-clipper

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

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

                        This is a Chrome extension to clip websites and download them into a readable markdown file. Please keep in mind that it is not guaranteed to work on all websites.

To use this add-on, simply click the add-on icon while you are browsing the page you want to save offline. A dialogue asks you where to save the generated markdown file.

It uses the following two libraries:

    Readability.js by Mozilla in version from commit 52ab9b5c8916c306a47b2119270dcdabebf9d203. This library is also used for the Firefox Reader View and it simplifies the page so that only the important parts are clipped. (Licensed under Apache License Version 2.0)
    Turndown v6.0.0 & turndown-plugin-gfm v1.0.2 by Dom Christie is used to convert the simplified HTML (from Readability.js) into markdown. (Licensed under MIT License).

See the source code on https://github.com/enrico-kaack/markdown-clipper

Use at your own risk, no Warranty or Liability by the author or other contributors.                    

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

Όνομα markdown-clipper markdown-clipper
ID cjedbglnccaioiolemnfhjncicchinao
Επίσημο URL https://chrome.google.com/webstore/detail/markdown-clipper/cjedbglnccaioiolemnfhjncicchinao
Περιγραφή A webclipper to download sites in markdown format. It is not guaranteed to work with all websites.
Μέγεθος Αρχείου 134 KB
Αριθμός Εγκαταστάσεων 2,279
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2020-07-19
Ημερομηνία Δημοσίευσης 2019-01-07
Αξιολόγηση 4.40/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής kaack.enrico
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/enrico-kaack/markdown-clipper
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "markdown-clipper",
    "version": "1.2",
    "author": "Enrico Kaack",
    "description": "A webclipper to download sites in markdown format. It is not guaranteed to work with all websites.",
    "icons": {
        "16": "\/icons\/favicon-16x16.png",
        "32": "\/icons\/favicon-32x32.png",
        "192": "\/icons\/favicon-192x192.png",
        "512": "\/icons\/favicon-512x512.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "downloads"
    ],
    "browser_action": {
        "default_title": "markdown-clipper",
        "default_icon": {
            "16": "\/icons\/favicon-16x16.png",
            "32": "\/icons\/favicon-32x32.png"
        }
    },
    "background": {
        "scripts": [
            "background\/turndown.js",
            "background\/turndown-plugin-gfm.js",
            "background\/Readability.js",
            "background\/background.js"
        ]
    }
}