NYTimes Free Cooking

Removes signup/ subscription popup from the NYTimes cooking website.

ما هو NYTimes Free Cooking؟

NYTimes Free Cooking هو إضافة Chrome تم تطويرها بواسطة rajesh64727، والميزة الرئيسية لها هي "Removes signup/ subscription popup from the NYTimes cooking website.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة NYTimes Free Cooking

قم بتنزيل ملفات الامتداد NYTimes Free Cooking بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم NYTimes Free Cooking NYTimes Free Cooking
ID dfcgnppjemgegjipdnfbhekjnkhkcpom
عنوان URL الرسمي https://chromewebstore.google.com/detail/nytimes-free-cooking/dfcgnppjemgegjipdnfbhekjnkhkcpom
الوصف Removes signup/ subscription popup from the NYTimes cooking website.
حجم الملف 25.98 KB
عدد التثبيتات 121
النسخة الحالية 1.0.0
آخر تحديث 2022-03-15
تاريخ النشر 2022-03-15
تقييم 5.00/5 مجموع تقييمات 1
المطور rajesh64727
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://rajesh64727.github.io
عنوان صفحة المساعدة https://rajesh64727.github.io
عنوان صفحة سياسة الخصوصية https://rajesh64727.github.io/privacy.html
اللغات المدعومة 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"
            ]
        }
    ]
}