Bitbucket PR Spell Checker
Perform spell checking on Bitbucket pull requests.
Co je Bitbucket PR Spell Checker?
Bitbucket PR Spell Checker je rozšíření Chrome vyvinuté ryota-abe, a jeho hlavní funkcí je „Perform spell checking on Bitbucket pull requests.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Bitbucket PR Spell Checker
Stáhněte si soubory rozšíření Bitbucket PR Spell Checker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Bitbucket PR Spell Checker |
ID | klefioohpconbmenpnebjjkolkodobnk |
Oficiální URL | https://chromewebstore.google.com/detail/bitbucket-pr-spell-checke/klefioohpconbmenpnebjjkolkodobnk |
Popis | Perform spell checking on Bitbucket pull requests. |
Velikost souboru | 346 KB |
Počet instalací | 67 |
Aktuální Verze | 0.6.0 |
Poslední Aktualizace | 2023-04-30 |
Datum Vydání | 2021-12-28 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | ryota-abe |
[email protected] | |
Typ Platby | free |
URL Stránky Nápovědy | https://github.com/ryota-abe/bitbucket_pr_spell_checker |
Podporované Jazyky | 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" ] } |