Bitbucket PR Spell Checker
Perform spell checking on Bitbucket pull requests.
Qu'est-ce que Bitbucket PR Spell Checker ?
Bitbucket PR Spell Checker est une extension Chrome développée par ryota-abe, et sa fonction principale est "Perform spell checking on Bitbucket pull requests.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Bitbucket PR Spell Checker
Téléchargez les fichiers d'extension Bitbucket PR Spell Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Bitbucket PR Spell Checker |
ID | klefioohpconbmenpnebjjkolkodobnk |
URL Officiel | https://chromewebstore.google.com/detail/bitbucket-pr-spell-checke/klefioohpconbmenpnebjjkolkodobnk |
Description | Perform spell checking on Bitbucket pull requests. |
Taille du Fichier | 346 KB |
Nombre d'Installations | 67 |
Version Actuelle | 0.6.0 |
Dernière Mise à Jour | 2023-04-30 |
Date de Publication | 2021-12-28 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | ryota-abe |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/ryota-abe/bitbucket_pr_spell_checker |
Langues Prises en Charge | 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" ] } |