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
官方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"
    ]
}