Bitbucket PR Spell Checker

Perform spell checking on Bitbucket pull requests.

Cos'è Bitbucket PR Spell Checker?

Bitbucket PR Spell Checker è un'estensione di Chrome sviluppata da ryota-abe, e la sua funzione principale è "Perform spell checking on Bitbucket pull requests.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Bitbucket PR Spell Checker

Scarica i file di estensione Bitbucket PR Spell Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension performs a spell check on the Bitbucket pull request page.
Words that are suspected of being misspelled will be displayed at the top of each file.
Clicking on the displayed word will display a waved underline on the corresponding line.                    

Informazioni di Base sull'Estensione

Nome Bitbucket PR Spell Checker Bitbucket PR Spell Checker
ID klefioohpconbmenpnebjjkolkodobnk
URL Ufficiale https://chromewebstore.google.com/detail/bitbucket-pr-spell-checke/klefioohpconbmenpnebjjkolkodobnk
Descrizione Perform spell checking on Bitbucket pull requests.
Dimensione del File 346 KB
Conteggio Installazioni 67
Versione Corrente 0.6.0
Ultimo Aggiornamento 2023-04-30
Data di Pubblicazione 2021-12-28
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore ryota-abe
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/ryota-abe/bitbucket_pr_spell_checker
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bitbucket PR Spell Checker",
    "short_name": "SpellChecker",
    "version": "0.6.0",
    "description": "Perform spell checking on Bitbucket pull requests.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "icon48.png",
        "default_popup": "options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bitbucket.org\/*\/*\/pull-requests\/*"
            ],
            "js": [
                "content_scripts.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}