Github Fork Confirmation

Adds a confirmation dialog to the Github and Gist Fork button.

Github Fork Confirmation क्या है?

Github Fork Confirmation Alex Pendleton द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a confirmation dialog to the Github and Gist Fork button."।

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

screenshot

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

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

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

                        Are you always accidentally forking repositories? I know I am.

This Chrome Extension (or User Script!) will help. It adds a confirm dialog to the Fork button on Github repositories and Gists.

The source code is available on Github. https://github.com/alexcpendleton/GithubForkConfirmation

Updated! August 25, 2015: v1.0.1 - Fixed to accommodate new Github HTML. Sorry for the inconvenience.                    

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

नाम Github Fork Confirmation Github Fork Confirmation
ID mofjdkidemhjconaodballcmpnaofeod
आधिकारिक URL https://chromewebstore.google.com/detail/github-fork-confirmation/mofjdkidemhjconaodballcmpnaofeod
विवरण Adds a confirmation dialog to the Github and Gist Fork button.
फ़ाइल का आकार 17.08 KB
स्थापना संख्या 125
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2015-08-26
प्रकाशन तिथि 2015-08-25
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Alex Pendleton
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/alexcpendleton/GithubForkConfirmation
सहायता पृष्ठ URL https://github.com/alexcpendleton/GithubForkConfirmation
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Fork Confirmation",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Adds a confirmation dialog to the Github and Gist Fork button.",
    "homepage_url": "https:\/\/github.com\/alexcpendleton\/GithubForkConfirmation",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/gist.github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}