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 |
Eメール | [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" ] } ] } |