Autoviewed

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

What is Autoviewed?

Autoviewed is a Chrome extension developed by luismahou, and its main feature is "Mark as viewed files that aren't worth reviewing in your Github pull requests".

Extension Screenshots

screenshot
screenshot

Download Autoviewed Extension CRX File

Download Autoviewed extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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 🎉                    

Extension Basic Information

Name Autoviewed Autoviewed
ID occcjmolphcfebdeichmoflmfgeefjef
Official URL https://chromewebstore.google.com/detail/autoviewed/occcjmolphcfebdeichmoflmfgeefjef
Description Mark as viewed files that aren't worth reviewing in your Github pull requests
File Size 235 KB
Installation Count 37
Current Version 1.2.0
Last Updated 2022-02-15
Publish Date 2020-07-02
Rating 5.00/5 Total 2 Ratings
Developer luismahou
Email [email protected]
Payment Type free
Extension Website https://github.com/Luismahou/autoviewed
Help Page URL https://github.com/Luismahou/autoviewed/issues
Supported Languages 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"
    ]
}