New York Times Byline Restorer
Restores author bylines to the New York Times homepage and section pages
O que é New York Times Byline Restorer?
New York Times Byline Restorer é uma extensão do Chrome desenvolvida por https://danstillman.com, e sua principal característica é "Restores author bylines to the New York Times homepage and section pages".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão New York Times Byline Restorer
Baixe arquivos de extensão New York Times Byline Restorer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | New York Times Byline Restorer |
ID | gfiejlblkeelpnbmknocgaedclbimdja |
URL Oficial | https://chromewebstore.google.com/detail/new-york-times-byline-res/gfiejlblkeelpnbmknocgaedclbimdja |
Descrição | Restores author bylines to the New York Times homepage and section pages |
Tamanho do Arquivo | 27.62 KB |
Contagem de Instalações | 827 |
Versão Atual | 2.0.0 |
Última Atualização | 2022-09-18 |
Data de Publicação | 2019-10-10 |
Classificação | 5.00/5 Total de 12 Avaliações |
Desenvolvedor | https://danstillman.com |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/dstillman/nyt-byline-restorer |
Idiomas Suportados | 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]" } } } |