github-find

A plugin for searcing within Github repos.

ما هو github-find؟

github-find هو إضافة Chrome تم تطويرها بواسطة Aidan Feldman، والميزة الرئيسية لها هي "A plugin for searcing within Github repos.".

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

screenshot

تحميل ملف CRX للإضافة github-find

قم بتنزيل ملفات الامتداد github-find بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        When viewing a repository on the Github website, an Octocat icon will appear in the address bar - press CTL-SHIFT-f and a search box will appear.

Check out the source here: https://github.com/afeld/github-find                    

معلومات أساسية عن التمديد

الاسم github-find github-find
ID blocadmfchabihonegcgjjikbbmpliph
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph
الوصف A plugin for searcing within Github repos.
حجم الملف 40.7 KB
عدد التثبيتات 164
النسخة الحالية 1.0.2
آخر تحديث 2013-02-18
تاريخ النشر 2013-02-17
تقييم 5.00/5 مجموع تقييمات 1
المطور Aidan Feldman
نوع الدفع free
موقع الإضافة https://github.com/afeld/github-find
عنوان صفحة المساعدة https://github.com/afeld/github-find/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "github-find",
    "version": "1.0.2",
    "manifest_version": 2,
    "icons": {
        "16": "favicon.ico"
    },
    "description": "A plugin for searcing within Github repos.",
    "homepage_url": "https:\/\/github.com\/afeld\/github-find",
    "background": {
        "scripts": [
            "jquery-1.9.1.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "favicon.ico",
        "default_title": "Click or press Ctrl+Shift+F to search this repository."
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "exclude_globs": [
                "*github.com\/*\/"
            ],
            "js": [
                "jquery-1.9.1.min.js",
                "jquery.ui.position.min.js",
                "content-keydown.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}