ModClear

Clears notifications on click

Vad är ModClear?

ModClear är en Chrome-tillägg utvecklad av JonLuca, och dess huvudfunktion är "Clears notifications on click".

Tilläggsskärmbilder

screenshot

Ladda ner ModClear-förlängningens CRX-fil

Ladda ner ModClear-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Provides a quick way to archive all messages quickly on the new reddit modmail, both for notifications and conversations!                    

Grundläggande Information om Tillägg

Namn ModClear ModClear
ID gpcmcddkhaninomigjcgabkogknhblbm
Officiell webbadress https://chromewebstore.google.com/detail/modclear/gpcmcddkhaninomigjcgabkogknhblbm
Beskrivning Clears notifications on click
Filstorlek 84.55 KB
Antal Installationer 29
Aktuell Version 1.3
Senast Uppdaterad 2017-06-25
Publiceringsdatum 2017-06-25
Betyg 4.00/5 Totalt 4 Betyg
Utvecklare JonLuca
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/jonluca/ModClear
URL till Sekretesspolicy Sidan https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ModClear",
    "description": "Clears notifications on click",
    "version": "1.3",
    "background": {
        "scripts": [
            "js\/jquery-2.1.1.min.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/mod.reddit.com\/*",
                "https:\/\/mod.reddit.com\/*"
            ],
            "js": [
                "js\/jquery-2.1.1.min.js",
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "64": "images\/icon64.png",
        "32": "images\/icon32.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_title": "ModClear",
        "default_icon": "images\/hover.png"
    },
    "homepage_url": "https:\/\/github.com\/jonluca\/ModClear\/",
    "web_accessible_resources": [
        "js\/jquery-2.1.1.min.js",
        "images\/*"
    ]
}