Bitbucket Conventional Comments
Adds conventional comment shortcuts to the comment editor.
Bitbucket Conventional Comments क्या है?
Bitbucket Conventional Comments Sam Martin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds conventional comment shortcuts to the comment editor."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Bitbucket Conventional Comments एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Save precious time typing out conventional comments with just the click of a button!
एक्सटेंशन की मूल जानकारी
नाम | Bitbucket Conventional Comments |
ID | ahbhljoncimmieljhlkkeifohkigiefa |
आधिकारिक URL | https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa |
विवरण | Adds conventional comment shortcuts to the comment editor. |
फ़ाइल का आकार | 293 KB |
स्थापना संख्या | 148 |
वर्तमान संस्करण | 2.1.0 |
अंतिम अपडेट | 2023-09-01 |
प्रकाशन तिथि | 2021-07-14 |
रेटिंग | 4.33/5 कुल 3 रेटिंग्स |
डेवलपर | Sam Martin |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/smartinio/bitbucket-conventional-comments |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bitbucket Conventional Comments", "description": "Adds conventional comment shortcuts to the comment editor.", "version": "2.1.0", "content_scripts": [ { "matches": [ "*:\/\/*\/**\/*\/pull-requests\/*" ], "css": [ "src\/style.css" ], "js": [ "src\/index.js" ], "run_at": "document_idle" }, { "matches": [ "*:\/\/bitbucket.org\/**\/*\/pull-requests\/*" ], "css": [ "src\/style.css" ], "js": [ "src\/index.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "matches": [ "*:\/\/*\/*" ], "resources": [ "src\/*" ] } ], "action": { "default_popup": "src\/popup\/index.html", "default_icon": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" } }, "permissions": [ "clipboardRead", "clipboardWrite", "storage" ], "host_permissions": [ "*:\/\/*\/*" ] } |