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.".
Снимки экрана расширения
Скачать файл CRX расширения NYTimes Free Cooking
Скачайте файлы расширений NYTimes Free Cooking в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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 |
URL страницы помощи | https://rajesh64727.github.io |
URL страницы политики конфиденциальности | 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" ] } ] } |