Autoviewed

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

Autoviewed क्या है?

Autoviewed luismahou द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Mark as viewed files that aren't worth reviewing in your Github pull requests"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Autoviewed एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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