Autoviewed
Mark as viewed files that aren't worth reviewing in your Github pull requests
ما هو Autoviewed؟
Autoviewed هو إضافة Chrome تم تطويرها بواسطة luismahou، والميزة الرئيسية لها هي "Mark as viewed files that aren't worth reviewing in your Github pull requests".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Autoviewed
قم بتنزيل ملفات الامتداد Autoviewed بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
I know, I know, you shouldn't have auto-generated files in your git repository, but you know, sometimes you do 😄. This extension will mark as viewed those files automatically without human intervention 🎉
معلومات أساسية عن التمديد
الاسم | Autoviewed |
ID | occcjmolphcfebdeichmoflmfgeefjef |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/autoviewed/occcjmolphcfebdeichmoflmfgeefjef |
الوصف | Mark as viewed files that aren't worth reviewing in your Github pull requests |
حجم الملف | 235 KB |
عدد التثبيتات | 37 |
النسخة الحالية | 1.2.0 |
آخر تحديث | 2022-02-15 |
تاريخ النشر | 2020-07-02 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | luismahou |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/Luismahou/autoviewed |
عنوان صفحة المساعدة | https://github.com/Luismahou/autoviewed/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Autoviewed", "version": "1.2.0", "description": "Mark as viewed files that aren't worth reviewing in your Github pull requests", "icons": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png", "256": "images\/icon256.png", "512": "images\/icon512.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/pull\/*" ], "js": [ "content-script.js" ] } ], "action": { "default_title": "Autoviewed", "default_icon": "images\/icon48.png", "default_popup": "popup.html" }, "options_page": "options.html", "permissions": [ "declarativeContent", "storage" ] } |