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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Autoviewed

ดาวน์โหลดไฟล์ส่วนขยาย Autoviewed ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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
URL หน้าช่วยเหลือ 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"
    ]
}