GitHub go to line number
Open-source extension which adds a go to line number modal right into GitHub
ما هو GitHub go to line number؟
GitHub go to line number هو إضافة Chrome تم تطويرها بواسطة NicoSantangelo، والميزة الرئيسية لها هي "Open-source extension which adds a go to line number modal right into GitHub".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GitHub go to line number
قم بتنزيل ملفات الامتداد GitHub go to line number بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
If you ever wanted to find a particular line number on GitHub and grew frustrated because Chrome refuses to find it, this is for you. The modal is toggled pressing ctrl+g and supports both diffs and single code files. You can cycle throughout the results using the enter key to move forward and shift+enter to move backwards.
معلومات أساسية عن التمديد
الاسم | GitHub go to line number |
ID | cbpdahjcomdapkaojlbhbbmopbmbecio |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/github-go-to-line-number/cbpdahjcomdapkaojlbhbbmopbmbecio |
الوصف | Open-source extension which adds a go to line number modal right into GitHub |
حجم الملف | 16.24 KB |
عدد التثبيتات | 103 |
النسخة الحالية | 1.2.0 |
آخر تحديث | 2016-07-19 |
تاريخ النشر | 2016-07-18 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | NicoSantangelo |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/NicoSantangelo/github-go-to-line-number |
عنوان صفحة سياسة الخصوصية | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub go to line number", "description": "Open-source extension which adds a go to line number modal right into GitHub", "short_name": "Github goto", "version": "1.2.0", "icons": { "16": "icons\/16.png", "19": "icons\/19.png", "38": "icons\/38.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.github.com\/*", "http:\/\/www.github.com\/*", "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "permissions": [], "web_accessible_resources": [ "modal.html" ] } |