Bitbucket PR Spell Checker
Perform spell checking on Bitbucket pull requests.
什麼是Bitbucket PR Spell Checker?
Bitbucket PR Spell Checker是由ryota-abe開發的Chrome擴展程式,該擴展的主要功能是“Perform spell checking on Bitbucket pull requests.”。
擴展截圖
下載Bitbucket PR Spell Checker擴展crx文件
下載Bitbucket PR Spell Checker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Bitbucket PR Spell Checker |
ID | klefioohpconbmenpnebjjkolkodobnk |
官方網址 | https://chromewebstore.google.com/detail/bitbucket-pr-spell-checke/klefioohpconbmenpnebjjkolkodobnk |
簡介 | Perform spell checking on Bitbucket pull requests. |
檔案大小 | 346 KB |
安裝次數 | 67 |
目前版本 | 0.6.0 |
更新時間 | 2023-04-30 |
上架時間 | 2021-12-28 |
評分 | 5.00/5 共 1 次評分 |
開發者 | ryota-abe |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://github.com/ryota-abe/bitbucket_pr_spell_checker |
支援的語言 | 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" ] } |