New York Times Byline Restorer
Restores author bylines to the New York Times homepage and section pages
Cos'è New York Times Byline Restorer?
New York Times Byline Restorer è un'estensione di Chrome sviluppata da https://danstillman.com, e la sua funzione principale è "Restores author bylines to the New York Times homepage and section pages".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione New York Times Byline Restorer
Scarica i file di estensione New York Times Byline Restorer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | New York Times Byline Restorer |
ID | gfiejlblkeelpnbmknocgaedclbimdja |
URL Ufficiale | https://chromewebstore.google.com/detail/new-york-times-byline-res/gfiejlblkeelpnbmknocgaedclbimdja |
Descrizione | Restores author bylines to the New York Times homepage and section pages |
Dimensione del File | 27.62 KB |
Conteggio Installazioni | 827 |
Versione Corrente | 2.0.0 |
Ultimo Aggiornamento | 2022-09-18 |
Data di Pubblicazione | 2019-10-10 |
Valutazione | 5.00/5 Totale 12 Valutazioni |
Sviluppatore | https://danstillman.com |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/dstillman/nyt-byline-restorer |
Lingue Supportate | 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]" } } } |