NoEval - Disable Eval()
Disable window.eval() in all websites and improve your online security!
NoEval - Disable Eval()คืออะไร?
NoEval - Disable Eval() เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Keller และคุณลักษณะหลักของมันคือ "Disable window.eval() in all websites and improve your online security!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NoEval - Disable Eval()
ดาวน์โหลดไฟล์ส่วนขยาย NoEval - Disable Eval() ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
NoEval extension disables window.eval() function on all webpages. It also disables similar approached to eval() when the input argument's type is String: 1. eval('sample code') 2. (new Function('sample code'))() 3. window.setTimeout('sample code', delay) 4. window.setInterval('sample code', delay) When eval or similar methods are used on websites, users might be at risk in terms of security. Please visit the below page to get more info about eval and why it is a dangerous function: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval#Never_use_eval! To turn the extension ON/OFF, please open the toolbar popup and then press the toggle button on the left side. Next, please reload all open tabs for changes to take effect. If you found a bug, or have a feature request in mind, please fill out the bug report form on the add-on's homepage (https://mybrowseraddon.com/noeval.html).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | NoEval - Disable Eval() |
ID | ahemebpfpianlpbbddghmfpigbjnjgmg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/noeval-disable-eval/ahemebpfpianlpbbddghmfpigbjnjgmg |
คำอธิบาย | Disable window.eval() in all websites and improve your online security! |
ขนาดไฟล์ | 55.81 KB |
จำนวนการติดตั้ง | 180 |
เวอร์ชันปัจจุบัน | 0.1.6 |
อัปเดตครั้งล่าสุด | 2024-02-11 |
วันที่เผยแพร่ | 2020-03-29 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Keller |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://mybrowseraddon.com/noeval.html |
URL หน้าช่วยเหลือ | https://mybrowseraddon.com/noeval.html |
URL หน้านโยบายความเป็นส่วนตัว | https://mybrowseraddon.com/privacy-policy/keller.html |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.6", "manifest_version": 3, "offline_enabled": true, "host_permissions": [ "*:\/\/*\/*" ], "name": "NoEval - Disable Eval()", "homepage_url": "https:\/\/mybrowseraddon.com\/noeval.html", "description": "Disable window.eval() in all websites and improve your online security!", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "scripting" ], "action": { "default_popup": "data\/popup\/popup.html", "default_title": "NoEval - Disable Eval()", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |