Reddit New Comments Highlighter

Highlights new comments when you revisit a comments page on reddit.

Cos'è Reddit New Comments Highlighter?

Reddit New Comments Highlighter è un'estensione di Chrome sviluppata da https://blog.abhijeetr.com, e la sua funzione principale è "Highlights new comments when you revisit a comments page on reddit.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Reddit New Comments Highlighter

Scarica i file di estensione Reddit New Comments Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension highlights new comments on a link page in reddit when you revisit a link.

To jump between "new links", simply use shortcut keys "Shift+Up" & "Shift+Down".                    

Informazioni di Base sull'Estensione

Nome Reddit New Comments Highlighter Reddit New Comments Highlighter
ID ajdilinnnkbmpoegibgacadjlblmpjad
URL Ufficiale https://chromewebstore.google.com/detail/reddit-new-comments-highl/ajdilinnnkbmpoegibgacadjlblmpjad
Descrizione Highlights new comments when you revisit a comments page on reddit.
Dimensione del File 163 KB
Conteggio Installazioni 1,856
Versione Corrente 3.0
Ultimo Aggiornamento 2018-02-17
Data di Pubblicazione 2018-02-16
Valutazione 3.50/5 Totale 24 Valutazioni
Sviluppatore https://blog.abhijeetr.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/r\/*",
                "http:\/\/www.reddit.com\/r\/*"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "includes\/content.js"
            ]
        }
    ],
    "name": "Reddit New Comments Highlighter",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/button.png"
    },
    "web_accessible_resources": [
        "res\/*",
        "assets\/*",
        "icons\/*"
    ],
    "description": "Highlights new comments when you revisit a comments page on reddit.",
    "background": {
        "page": "background.html"
    },
    "homepage_url": "https:\/\/github.com\/shadyabhi\/Reddit-New-Comments-Highlighter",
    "version": "3.0",
    "options_page": "options.html",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "webNavigation"
    ]
}