Autoviewed
Mark as viewed files that aren't worth reviewing in your Github pull requests
Autoviewed là gì?
Autoviewed là một tiện ích mở rộng Chrome được phát triển bởi luismahou, và tính năng chính của nó là "Mark as viewed files that aren't worth reviewing in your Github pull requests".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Autoviewed
Tải xuống các tệp mở rộng Autoviewed dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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 🎉
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Autoviewed |
ID | occcjmolphcfebdeichmoflmfgeefjef |
URL Chính Thức | https://chromewebstore.google.com/detail/autoviewed/occcjmolphcfebdeichmoflmfgeefjef |
Mô tả | Mark as viewed files that aren't worth reviewing in your Github pull requests |
Kích Thước Tệp | 235 KB |
Số Lần Cài Đặt | 37 |
Phiên Bản Hiện Tại | 1.2.0 |
Cập Nhật Lần Cuối | 2022-02-15 |
Ngày Phát Hành | 2020-07-02 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | luismahou |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Luismahou/autoviewed |
URL Trang Trợ Giúp | https://github.com/Luismahou/autoviewed/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |