GitX- Private notes for open source projects

Chrome extension for adding private notes in Github

GitX- Private notes for open source projects क्या है?

GitX- Private notes for open source projects gitxapp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension for adding private notes in Github"।

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

screenshot
screenshot

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

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

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

                        GitX is a chrome extension that allows you to add private notes in issue/PR pages and these are only visible to project collaborators and not any other users.

You need private notes because you will get pull requests that you are not sure about. You want to post a comment for your colleague to look at but you don't want the pull requests contributor to see that notes. 

GitX allows you to add notes in pull request/issue pages and these are only visible to project collaborators and not any other users. This helps actual maintainers of the project to communicate with each other in GitHub itself.

Steps to use:
1. Click on "Add to Chrome" button
2. Login to GitX account
3. Goto GitHub issues/pull requests tab.
4. GitX provides you with a ‘Make Note', find it.
5. Add a note and save it.
6. "Visible to collaborators" option enable us to show the notes to other collaborators.  
NB: The user should have the write access to the repository for creating notes.                    

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

नाम GitX- Private notes for open source projects GitX- Private notes for open source projects
ID mheimfkblidpjbpdinfcipgggfdkinoe
आधिकारिक URL https://chromewebstore.google.com/detail/gitx-private-notes-for-op/mheimfkblidpjbpdinfcipgggfdkinoe
विवरण Chrome extension for adding private notes in Github
फ़ाइल का आकार 23.76 KB
स्थापना संख्या 27
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2021-04-19
प्रकाशन तिथि 2020-04-20
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर gitxapp
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://gitxapp.com/
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitX- Private notes for open source projects",
    "short_name": "GitX",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Chrome extension for adding private notes in Github",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "GitX",
        "default_icon": "icons\/icon128.png"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false,
        "css": [
            "widget.css"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gitextended.herokuapp.com\/*",
                "https:\/\/gitx-app.herokuapp.com\/*",
                "https:\/\/gitxapp.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ]
}