New York Times Byline Restorer
Restores author bylines to the New York Times homepage and section pages
Что такое New York Times Byline Restorer?
New York Times Byline Restorer - это расширение Chrome, разработанное https://danstillman.com, и его основная функция - "Restores author bylines to the New York Times homepage and section pages".
Снимки экрана расширения
Скачать файл CRX расширения New York Times Byline Restorer
Скачайте файлы расширений New York Times Byline Restorer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | New York Times Byline Restorer |
ID | gfiejlblkeelpnbmknocgaedclbimdja |
Официальный URL | https://chromewebstore.google.com/detail/new-york-times-byline-res/gfiejlblkeelpnbmknocgaedclbimdja |
Описание | Restores author bylines to the New York Times homepage and section pages |
Размер файла | 27.62 KB |
Количество установок | 827 |
Текущая Версия | 2.0.0 |
Последнее Обновление | 2022-09-18 |
Дата публикации | 2019-10-10 |
Рейтинг | 5.00/5 Всего 12 оценок |
Разработчик | https://danstillman.com |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://github.com/dstillman/nyt-byline-restorer |
Поддерживаемые языки | 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]" } } } |