github-code-viewer
A Chromium extension to view GitHub code faster and easier.
ما هو github-code-viewer؟
github-code-viewer هو إضافة Chrome تم تطويرها بواسطة xcv58، والميزة الرئيسية لها هي "A Chromium extension to view GitHub code faster and easier.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة github-code-viewer
قم بتنزيل ملفات الامتداد github-code-viewer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
View GitHub code in VSCode. معلومات أساسية عن التمديد
| الاسم | |
| ID | ecddapgifccgblebfibdgkagfbdagjfn |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/github-code-viewer/ecddapgifccgblebfibdgkagfbdagjfn |
| الوصف | A Chromium extension to view GitHub code faster and easier. |
| حجم الملف | 19.39 KB |
| عدد التثبيتات | 609 |
| النسخة الحالية | 0.0.1 |
| آخر تحديث | 2021-02-10 |
| تاريخ النشر | 2021-02-10 |
| تقييم | 5.00/5 مجموع تقييمات 2 |
| المطور | xcv58 |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/febaoshan/edge-extensions-github-code-viewer |
| عنوان صفحة المساعدة | https://github.com/febaoshan/edge-extensions-github-code-viewer/issues |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "github-code-viewer",
"version": "0.0.1",
"manifest_version": 2,
"description": "A Chromium extension to view GitHub code faster and easier.",
"icons": {
"16": "icons\/logo16x16.png",
"32": "icons\/logo32x32.png",
"48": "icons\/logo48x48.png",
"128": "icons\/logo128x128.png"
},
"page_action": {
"default_popup": "popup\/popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"src\/background.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"src\/background.js"
],
"homepage_url": "https:\/\/github.com\/febaoshan\/edge-extensions-github-code-viewer",
"permissions": [
"contextMenus"
],
"background": {
"scripts": [
"src\/background.js"
]
}
} | |