bitbucket-companion

a companion for bitbucket

bitbucket-companion क्या है?

bitbucket-companion Benjamin Santalucia द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "a companion for bitbucket"।

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

screenshot

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

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

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

                        A little companion for atlassian bitbucket server.  

- Shows badge to let you know how many pull requests are waiting your approval.  
- Gives a dashboard view with recent pull requests changes.  
- Tracks comments you may have to read.  
- Automatically delete approval when an approved pull request changes.  
- Notify you when you have pull requests pending for reviews  
- Keep itself up to date with bitbuket server
- Allow to sort in the branches view
  
Note: This require Bitbucket REST API to be enabled.

CHANGELOG:
1.5.+
 - Fix hammering of bitbucket server
 - Allow to disable the automatic remove of approval

1.3.+
 - Handle server error and notify when there are credentials issues
 - Update Icon (red when error, blue otherwise)
 - Show latest notification details inside the icon tooltip

1.2.+
- Allow to show/hide some PR states (like not showing already merged PR)
- Allow to disable notifications                    

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

नाम bitbucket-companion bitbucket-companion
ID nnbhbicafgeplheikeiinpiaihcdegap
आधिकारिक URL https://chromewebstore.google.com/detail/bitbucket-companion/nnbhbicafgeplheikeiinpiaihcdegap
विवरण a companion for bitbucket
फ़ाइल का आकार 52.89 KB
स्थापना संख्या 23
वर्तमान संस्करण 1.5.3
अंतिम अपडेट 2018-10-17
प्रकाशन तिथि 2018-10-17
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Benjamin Santalucia
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ben8p/chrome-extension-bitbucket-companion
सहायता पृष्ठ URL https://github.com/ben8p/chrome-extension-bitbucket-companion
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "50",
    "default_locale": "en",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "tabs",
        "notifications",
        "https:\/\/*\/",
        "http:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "js\/events.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "js\/monitor.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "a companion for bitbucket",
    "name": "bitbucket-companion",
    "version": "1.5.3"
}