Stash PR Helper

Helps Stash users to fill in Pull Requests' descriptions and reviewers

Stash PR Helper क्या है?

Stash PR Helper nebakraj द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps Stash users to fill in Pull Requests' descriptions and reviewers"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Stash PR Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Stash PR Helper is a productivity tool which allows Stash users to create Pull Requests (PRs) easier.
For now the app provides 2 options: PR description templates and PR reviewers groups.

How to use.
1) Go to the settings page and add some items.
2) When creating a pull request put a cursor into the appropriate field (Description or Reviewers)
3) Push any keyboard arrow (up, down, left, right) to open a pop-up with a list of suggestions.
4) Select some suggestion and get the field auto-filled.

For unpacked version check:
https://github.com/konst8/stash_pr_helper/tree/master                    

एक्सटेंशन की मूल जानकारी

नाम Stash PR Helper Stash PR Helper
ID egdpkgklhlhmckklngifpnjfcmgahpnk
आधिकारिक URL https://chromewebstore.google.com/detail/stash-pr-helper/egdpkgklhlhmckklngifpnjfcmgahpnk
विवरण Helps Stash users to fill in Pull Requests' descriptions and reviewers
फ़ाइल का आकार 112 KB
स्थापना संख्या 102
वर्तमान संस्करण 1.0.0.8
अंतिम अपडेट 2018-02-20
प्रकाशन तिथि 2018-02-19
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर nebakraj
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stash PR Helper",
    "description": "Helps Stash users to fill in Pull Requests' descriptions and reviewers",
    "version": "1.0.0.8",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Fill in PR's reviewers"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*pull-requests*",
                "https:\/\/*\/*compare\/commits?*",
                "https:\/\/*\/*compare\/diff?*"
            ],
            "js": [
                "libs\/jquery-ui-1.12.1.custom\/external\/jquery\/jquery.js",
                "contentScript.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "contentEject.js"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    }
}