NY Times Articles
The New York Times Articles full access. It is a 'Proof of Concept' work.
什么是NY Times Articles?
NY Times Articles是由rajesh64727开发的Chrome扩展程序,该扩展的主要功能是“The New York Times Articles full access. It is a 'Proof of Concept' work.”。
扩展截图
下载NY Times Articles扩展crx文件
下载NY Times Articles扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This allows user to read full article without registering to the New York Times website. There is no intent to harm anybody or the News site. In case of any copyright or legal issue please let me know before. I support free press, peace. + Also try the NYT cooking section extension on https://chrome.google.com/webstore/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom Updates: +April 1, 2022 - updated to Chrome manifest 3 =============================================================== If you are a developer and want to improve it ( or your extension) here is the source code path https://github.com/rajesh64727/BrowserExtensions/tree/master/NYTimesChromeExtn ===============================================================
扩展基本信息
名称 | NY Times Articles |
ID | joojgneaeojkmbijpheacjlpfbahhldc |
官方URL | https://chromewebstore.google.com/detail/ny-times-articles/joojgneaeojkmbijpheacjlpfbahhldc |
简介 | The New York Times Articles full access. It is a 'Proof of Concept' work. |
文件大小 | 31.09 KB |
安装次数 | 4,173 |
当前版本 | 1.2.0 |
更新时间 | 2022-04-02 |
上架时间 | 2020-08-13 |
评分 | 4.43/5 共46次评分 |
开发者 | rajesh64727 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://rajesh64727.github.io |
隐私政策页面URL | https://rajesh64727.github.io/privacy.html |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "NY Times Articles", "version": "1.2.0", "description": "The New York Times Articles full access. It is a 'Proof of Concept' work.", "action": { "default_icon": "images\/icon48.png", "default_popup": "popup.html" }, "icons": { "128": "images\/icon128.png", "64": "images\/icon64.png", "48": "images\/icon48.png" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/www.nytimes.com\/*" ], "js": [ "content.js" ] } ] } |