Bitbucket PR Spell Checker
Perform spell checking on Bitbucket pull requests.
¿Qué es Bitbucket PR Spell Checker?
Bitbucket PR Spell Checker es una extensión de Chrome desarrollada por ryota-abe, y su función principal es "Perform spell checking on Bitbucket pull requests.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Bitbucket PR Spell Checker
Descarga archivos de extensión Bitbucket PR Spell Checker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Bitbucket PR Spell Checker |
ID | klefioohpconbmenpnebjjkolkodobnk |
URL Oficial | https://chromewebstore.google.com/detail/bitbucket-pr-spell-checke/klefioohpconbmenpnebjjkolkodobnk |
Descripción | Perform spell checking on Bitbucket pull requests. |
Tamaño del Archivo | 346 KB |
Cantidad de Instalaciones | 67 |
Versión Actual | 0.6.0 |
Última Actualización | 2023-04-30 |
Fecha de Publicación | 2021-12-28 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | ryota-abe |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://github.com/ryota-abe/bitbucket_pr_spell_checker |
Idiomas Soportados | 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" ] } |