New York Times Byline Restorer

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

Vad är New York Times Byline Restorer?

New York Times Byline Restorer är en Chrome-tillägg utvecklad av https://danstillman.com, och dess huvudfunktion är "Restores author bylines to the New York Times homepage and section pages".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner New York Times Byline Restorer-förlängningens CRX-fil

Ladda ner New York Times Byline Restorer-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

                        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.                    

Grundläggande Information om Tillägg

Namn New York Times Byline Restorer New York Times Byline Restorer
ID gfiejlblkeelpnbmknocgaedclbimdja
Officiell webbadress https://chromewebstore.google.com/detail/new-york-times-byline-res/gfiejlblkeelpnbmknocgaedclbimdja
Beskrivning Restores author bylines to the New York Times homepage and section pages
Filstorlek 27.62 KB
Antal Installationer 827
Aktuell Version 2.0.0
Senast Uppdaterad 2022-09-18
Publiceringsdatum 2019-10-10
Betyg 5.00/5 Totalt 12 Betyg
Utvecklare https://danstillman.com
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/dstillman/nyt-byline-restorer
Stödda Språk 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]"
        }
    }
}