NYTimes Free Cooking
Removes signup/ subscription popup from the NYTimes cooking website.
什么是NYTimes Free Cooking?
NYTimes Free Cooking是由rajesh64727开发的Chrome扩展程序,该扩展的主要功能是“Removes signup/ subscription popup from the NYTimes cooking website.”。
扩展截图
下载NYTimes Free Cooking扩展crx文件
下载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 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |