NY Times Articles

The New York Times Articles full access. It is a 'Proof of Concept' work.

NY Times Articlesคืออะไร?

NY Times Articles เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rajesh64727 และคุณลักษณะหลักของมันคือ "The New York Times Articles full access. It is a 'Proof of Concept' work."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NY Times Articles

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
            ]
        }
    ]
}