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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

NY Times Articles 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            ]
        }
    ]
}