Web Application/Tool Sniffer
Detect web applications, tools, and javascript libraries running on the websites you browse.
Web Application/Tool Snifferคืออะไร?
Web Application/Tool Sniffer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jamesjnadeau.com และคุณลักษณะหลักของมันคือ "Detect web applications, tools, and javascript libraries running on the websites you browse."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Application/Tool Sniffer
ดาวน์โหลดไฟล์ส่วนขยาย Web Application/Tool Sniffer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Detects and displays web framework, CMS and javascript libraries running on the websites you are visiting. An icon will appear in the address bar that indicates the detected frameworks. Version detection is available on some frameworks as well! You can view the source code here: https://github.com/jamesjnadeau/chromesniffer I don't care to ever monetize this, or track what you're doing. Take a look at the code if you want :) I use this because I'm nosey, and thought I'd share my updates to the project. This root project is not updated regularly, and I've pulled in some changes others have submitted, and a few of my own tweeks. These include: -proper detection of twitter bootstrap -jQuery Mobile Detection -aws services from https://github.com/nqbao/chromesniffer/pull/65
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Web Application/Tool Sniffer |
ID | fbnlibmhkkkpncdgfolnijebgnmbdbhi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/web-applicationtool-sniff/fbnlibmhkkkpncdgfolnijebgnmbdbhi |
คำอธิบาย | Detect web applications, tools, and javascript libraries running on the websites you browse. |
ขนาดไฟล์ | 709 KB |
จำนวนการติดตั้ง | 2,187 |
เวอร์ชันปัจจุบัน | 0.5 |
อัปเดตครั้งล่าสุด | 2018-12-27 |
วันที่เผยแพร่ | 2018-12-26 |
คะแนน | 3.42/5 รวมทั้งหมด 19 คะแนน |
ผู้พัฒนา | https://jamesjnadeau.com |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/jamesjnadeau/chromesniffer |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Web Application\/Tool Sniffer", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "version": "0.5", "description": "Detect web applications, tools, and javascript libraries running on the websites you browse.", "background": { "page": "background.html" }, "page_action": { "default_icon": "icon.png", "default_title": "Click for more details.", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "main.js" ] } ], "permissions": [ "tabs", "webRequest", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "detector.js" ] } |