NYTimes Free Cooking

Removes signup/ subscription popup from the NYTimes cooking website.

NYTimes Free Cooking là gì?

NYTimes Free Cooking 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à "Removes signup/ subscription popup from the NYTimes cooking website.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng NYTimes Free Cooking

Tải xuống các tệp mở rộng NYTimes Free Cooking 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

                        It removes the popup so that you can access the recipes without any disturbance.

Code file is simple ( a few lines of CSS update code in JS ) and if you want to improve it, source code is available at 
https://github.com/rajesh64727/BrowserExtensions/tree/master/NYTimesCooking                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NYTimes Free Cooking NYTimes Free Cooking
ID dfcgnppjemgegjipdnfbhekjnkhkcpom
URL Chính Thức https://chromewebstore.google.com/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom
Mô tả Removes signup/ subscription popup from the NYTimes cooking website.
Kích Thước Tệp 25.98 KB
Số Lần Cài Đặt 121
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-03-15
Ngày Phát Hành 2022-03-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển rajesh64727
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://rajesh64727.github.io
URL Trang Trợ Giúp 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
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NYTimes Free Cooking",
    "version": "1.0.0",
    "description": "Removes signup\/ subscription popup from the NYTimes cooking website.",
    "icons": {
        "128": "images\/nyc_icon128.png",
        "48": "images\/nyc_icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/cooking.nytimes.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}