Bitbucket PR Spell Checker
Perform spell checking on Bitbucket pull requests.
Bitbucket PR Spell Checkerคืออะไร?
Bitbucket PR Spell Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ryota-abe และคุณลักษณะหลักของมันคือ "Perform spell checking on Bitbucket pull requests."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bitbucket PR Spell Checker
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" ] } |