Github Fork Confirmation

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

ما هو Github Fork Confirmation؟

Github Fork Confirmation هو إضافة Chrome تم تطويرها بواسطة Alex Pendleton، والميزة الرئيسية لها هي "Adds a confirmation dialog to the Github and Gist Fork button.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Github Fork Confirmation

قم بتنزيل ملفات الامتداد Github Fork Confirmation بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}