NYTimes Free Cooking

Removes signup/ subscription popup from the NYTimes cooking website.

Apa itu NYTimes Free Cooking?

NYTimes Free Cooking adalah ekstensi Chrome yang dikembangkan oleh rajesh64727, dan fitur utamanya adalah "Removes signup/ subscription popup from the NYTimes cooking website.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi NYTimes Free Cooking

Unduh file ekstensi NYTimes Free Cooking dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama NYTimes Free Cooking NYTimes Free Cooking
ID dfcgnppjemgegjipdnfbhekjnkhkcpom
URL Resmi https://chromewebstore.google.com/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom
Deskripsi Removes signup/ subscription popup from the NYTimes cooking website.
Ukuran File 25.98 KB
Jumlah Instalasi 121
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2022-03-15
Tanggal Publikasi 2022-03-15
Penilaian 5.00/5 Total 1 Penilaian
Pengembang rajesh64727
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://rajesh64727.github.io
URL Halaman Bantuan https://rajesh64727.github.io
URL Halaman Kebijakan Privasi https://rajesh64727.github.io/privacy.html
Bahasa yang Didukung 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"
            ]
        }
    ]
}