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" ] } ] } |