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是由https://danstillman.com开发的Chrome扩展程序,该扩展的主要功能是“Restores author bylines to the New York Times homepage and section pages”。
扩展截图
下载New York Times Byline Restorer扩展crx文件
下载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]" } } } |