New York Times Byline Restorer

Restores author bylines to the New York Times homepage and section pages

Co je New York Times Byline Restorer?

New York Times Byline Restorer je rozšíření Chrome vyvinuté https://danstillman.com, a jeho hlavní funkcí je „Restores author bylines to the New York Times homepage and section pages“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření New York Times Byline Restorer

Stáhněte si soubory rozšíření New York Times Byline Restorer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        The New York Times removed bylines from its homepage and section pages in August 2018. This adds them back.

It can also optionally remove the “x min read” lines added to the homepage in September 2022.                    

Základní Informace o Rozšíření

Název New York Times Byline Restorer New York Times Byline Restorer
ID gfiejlblkeelpnbmknocgaedclbimdja
Oficiální URL https://chromewebstore.google.com/detail/new-york-times-byline-res/gfiejlblkeelpnbmknocgaedclbimdja
Popis Restores author bylines to the New York Times homepage and section pages
Velikost souboru 27.62 KB
Počet instalací 827
Aktuální Verze 2.0.0
Poslední Aktualizace 2022-09-18
Datum Vydání 2019-10-10
Hodnocení 5.00/5 Celkem 12 Hodnocení
Vývojář https://danstillman.com
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/dstillman/nyt-byline-restorer
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New York Times Byline Restorer",
    "description": "Restores author bylines to the New York Times homepage and section pages",
    "manifest_version": 2,
    "version": "2.0.0",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nytimes.com\/"
            ],
            "js": [
                "start.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.nytimes.com\/*"
            ],
            "js": [
                "bylines.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "https:\/\/*.nytimes.com\/*",
        "storage"
    ],
    "web_accessible_resources": [
        "styleStart.css",
        "announcement1.html"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}