Autoviewed

Mark as viewed files that aren't worth reviewing in your Github pull requests

什麼是Autoviewed?

Autoviewed是由luismahou開發的Chrome擴展程式,該擴展的主要功能是“Mark as viewed files that aren't worth reviewing in your Github pull requests”。

擴展截圖

screenshot
screenshot

下載Autoviewed擴展crx文件

下載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
官方網址 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"
    ]
}