Approve Pull Request with image
Chrome extension to approve pull request with LGTM image
Approve Pull Request with image क्या है?
Approve Pull Request with image michiaki.mizoguchi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension to approve pull request with LGTM image"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Approve Pull Request with image एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
# Feature - Copy and paste a random LGTM image to GitHub PR review textarea - Save your favorite LGTM images to local storage and sync Chrome account - Save as LGTM image from right click menu
एक्सटेंशन की मूल जानकारी
नाम | Approve Pull Request with image |
ID | bmkigbjalmniajmclpbniddicijnapgh |
आधिकारिक URL | https://chromewebstore.google.com/detail/approve-pull-request-with/bmkigbjalmniajmclpbniddicijnapgh |
विवरण | Chrome extension to approve pull request with LGTM image |
फ़ाइल का आकार | 345 KB |
स्थापना संख्या | 22 |
वर्तमान संस्करण | 2.0.0 |
अंतिम अपडेट | 2020-05-08 |
प्रकाशन तिथि | 2020-05-01 |
डेवलपर | michiaki.mizoguchi |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Approve Pull Request with image", "version": "2.0.0", "manifest_version": 2, "description": "Chrome extension to approve pull request with LGTM image", "homepage_url": "https:\/\/github.com\/mizoguche\/approve-pr-with-image", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "dist\/background.js" ], "persistent": true }, "options_page": "static\/option.html", "browser_action": { "default_icon": "icons\/icon19.png", "default_title": "browser action demo", "default_popup": "static\/browser_action.html" }, "permissions": [ "clipboardWrite", "contextMenus", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "dist\/inject.js" ] } ] } |