NY Times Articles
The New York Times Articles full access. It is a 'Proof of Concept' work.
NY Times Articles là gì?
NY Times Articles là một tiện ích mở rộng Chrome được phát triển bởi rajesh64727, và tính năng chính của nó là "The New York Times Articles full access. It is a 'Proof of Concept' work.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng NY Times Articles
Tải xuống các tệp mở rộng NY Times Articles dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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 ===============================================================
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | NY Times Articles |
ID | joojgneaeojkmbijpheacjlpfbahhldc |
URL Chính Thức | https://chromewebstore.google.com/detail/ny-times-articles/joojgneaeojkmbijpheacjlpfbahhldc |
Mô tả | The New York Times Articles full access. It is a 'Proof of Concept' work. |
Kích Thước Tệp | 31.09 KB |
Số Lần Cài Đặt | 4,173 |
Phiên Bản Hiện Tại | 1.2.0 |
Cập Nhật Lần Cuối | 2022-04-02 |
Ngày Phát Hành | 2020-08-13 |
Đánh Giá | 4.43/5 Tổng số 46 Đánh Giá |
Nhà Phát Triển | rajesh64727 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://rajesh64727.github.io |
URL Trang Chính Sách Bảo Mật | https://rajesh64727.github.io/privacy.html |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |