New York Times Byline Restorer

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

Qu'est-ce que New York Times Byline Restorer ?

New York Times Byline Restorer est une extension Chrome développée par https://danstillman.com, et sa fonction principale est "Restores author bylines to the New York Times homepage and section pages".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension New York Times Byline Restorer

Téléchargez les fichiers d'extension New York Times Byline Restorer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom New York Times Byline Restorer New York Times Byline Restorer
ID gfiejlblkeelpnbmknocgaedclbimdja
URL Officiel https://chromewebstore.google.com/detail/new-york-times-byline-res/gfiejlblkeelpnbmknocgaedclbimdja
Description Restores author bylines to the New York Times homepage and section pages
Taille du Fichier 27.62 KB
Nombre d'Installations 827
Version Actuelle 2.0.0
Dernière Mise à Jour 2022-09-18
Date de Publication 2019-10-10
Évaluation 5.00/5 Total 12 Évaluations
Développeur https://danstillman.com
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/dstillman/nyt-byline-restorer
Langues Prises en Charge 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]"
        }
    }
}