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
擴展基本資訊
名稱 | NYTimes Free Cooking |
ID | dfcgnppjemgegjipdnfbhekjnkhkcpom |
官方網址 | 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" ] } ] } |