New York Times Byline Restorer
Restores author bylines to the New York Times homepage and section pages
Hvad er New York Times Byline Restorer?
New York Times Byline Restorer er en Chrome-udvidelse udviklet af https://danstillman.com, og dens hovedfunktion er "Restores author bylines to the New York Times homepage and section pages".
Udvidelsesskærmbilleder
Download New York Times Byline Restorer-udvidelses-CRX-fil
Download New York Times Byline Restorer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | New York Times Byline Restorer |
ID | gfiejlblkeelpnbmknocgaedclbimdja |
Officiel URL | https://chromewebstore.google.com/detail/new-york-times-byline-res/gfiejlblkeelpnbmknocgaedclbimdja |
Beskrivelse | Restores author bylines to the New York Times homepage and section pages |
Filstørrelse | 27.62 KB |
Antal Installationer | 827 |
Nuværende Version | 2.0.0 |
Senest Opdateret | 2022-09-18 |
Udgivelsesdato | 2019-10-10 |
Bedømmelse | 5.00/5 Samlet 12 Bedømmelser |
Udvikler | https://danstillman.com |
[email protected] | |
Betalingsmetode | free |
Hjælpeside-URL | https://github.com/dstillman/nyt-byline-restorer |
Understøttede Sprog | 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]" } } } |