Vuetify docs chrome extension
Add link to Vuetify docs in GitHub.
ما هو Vuetify docs chrome extension؟
Vuetify docs chrome extension هو إضافة Chrome تم تطويرها بواسطة kokoa0429، والميزة الرئيسية لها هي "Add link to Vuetify docs in GitHub.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Vuetify docs chrome extension
قم بتنزيل ملفات الامتداد Vuetify docs chrome extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Add link to Vuetify docs in GitHub. This extension integrates GitHub code and documentation. This extension can click Vuetify elements(ex.)
معلومات أساسية عن التمديد
الاسم | Vuetify docs chrome extension |
ID | lojofoffjlaibldnphlifpghopnbcgpn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/vuetify-docs-chrome-exten/lojofoffjlaibldnphlifpghopnbcgpn |
الوصف | Add link to Vuetify docs in GitHub. |
حجم الملف | 31.99 KB |
عدد التثبيتات | 77 |
النسخة الحالية | 0.0.1 |
آخر تحديث | 2020-10-23 |
تاريخ النشر | 2020-10-22 |
المطور | kokoa0429 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/kokoa0429/vuetify-docs-chrome-extension |
عنوان صفحة المساعدة | https://github.com/kokoa0429/vuetify-docs-chrome-extension |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Vuetify docs chrome extension", "version": "0.0.1", "description": "Add link to Vuetify docs in GitHub.", "homepage_url": "https:\/\/github.com\/kokoa0429\/vuetify-docs-chrome-extension", "manifest_version": 2, "minimum_chrome_version": "49", "author": "kokoa0429", "short_name": "Vuetify dock in GitHub", "permissions": [ "*:\/\/github.com\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "128": "images\/icon-128.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/github.com\/*" ], "css": [ "style.css" ] } ] } |