New York Times Byline Restorer
Restores author bylines to the New York Times homepage and section pages
Was ist New York Times Byline Restorer?
New York Times Byline Restorer ist eine Chrome-Erweiterung, die von https://danstillman.com entwickelt wurde, und ihr Hauptmerkmal ist "Restores author bylines to the New York Times homepage and section pages".
Erweiterungsscreenshots
New York Times Byline Restorer-Erweiterungs-CRX-Datei herunterladen
Laden Sie New York Times Byline Restorer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | New York Times Byline Restorer |
ID | gfiejlblkeelpnbmknocgaedclbimdja |
Offizielle URL | https://chromewebstore.google.com/detail/new-york-times-byline-res/gfiejlblkeelpnbmknocgaedclbimdja |
Beschreibung | Restores author bylines to the New York Times homepage and section pages |
Dateigröße | 27.62 KB |
Installationsanzahl | 827 |
Aktuelle Version | 2.0.0 |
Letztes Update | 2022-09-18 |
Veröffentlichungsdatum | 2019-10-10 |
Bewertung | 5.00/5 Insgesamt 12 Bewertungen |
Entwickler | https://danstillman.com |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/dstillman/nyt-byline-restorer |
Unterstützte Sprachen | 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]" } } } |