Grammarly with Ghost

Allow Grammarly to work on Ghost's editor

Τι είναι το Grammarly with Ghost;

Το Grammarly with Ghost είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Shahed Nasser, και η κύρια λειτουργία του είναι "Allow Grammarly to work on Ghost's editor".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Grammarly with Ghost

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

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

                        If you use Ghost for your blogging needs and you need Grammarly as well to make your life easier, you probably noticed that Grammarly does not work with Ghost's editor Koenig. 

While researching this online, I found a convenient solution for this issue and a lot of people have been using it. I have used it myself and it works well. So, I decided to put it in an extension to help others as well.

It should be noted that the reason behind Grammarly not working with Ghost's editor is due to it not supporting it. So, I am not sure if this solution will cause any problems on your side. For me, it works perfectly well.

Note: This extension assumes you already have the Grammarly extension installed in your browser

If you find any issues or bugs, please submit it to the GitHub repository.

Extension icon is from Dinosoft Lab on Iconscout at https://iconscout.com/contributors/dinosoftlabs                    

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

Όνομα Grammarly with Ghost Grammarly with Ghost
ID iakfoofepmfjafjepidembmheemidbdb
Επίσημο URL https://chromewebstore.google.com/detail/grammarly-with-ghost/iakfoofepmfjafjepidembmheemidbdb
Περιγραφή Allow Grammarly to work on Ghost's editor
Μέγεθος Αρχείου 28.61 KB
Αριθμός Εγκαταστάσεων 2,007
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2023-08-30
Ημερομηνία Δημοσίευσης 2021-02-22
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Shahed Nasser
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/shahednasser/grammarly-ghost
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/shahednasser/grammarly-ghost/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Grammarly with Ghost",
    "version": "1.0.2",
    "description": "Allow Grammarly to work on Ghost's editor",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "assets\/images\/icon16.png",
            "24": "assets\/images\/icon24.png",
            "32": "assets\/images\/icon32.png"
        },
        "default_title": "Grammarly With Ghost",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "assets\/js\/contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "\/assets\/images\/icon16.png",
        "32": "\/assets\/images\/icon32.png",
        "48": "\/assets\/images\/icon48.png",
        "128": "\/assets\/images\/icon128.png"
    }
}