Web Technology Notifier
Displays the Web technology of the current page.
Web Technology Notifierคืออะไร?
Web Technology Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://cyril.io และคุณลักษณะหลักของมันคือ "Displays the Web technology of the current page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Technology Notifier
ดาวน์โหลดไฟล์ส่วนขยาย Web Technology Notifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Web Technology Notifier displays the technology that is executed by the Web server of the current page through an icon. Many modules and CMS can be identified, such as Phusion Passenger for Ruby applications (as Ruby on Rails and Sinatra frameworks), PHP based applications (like Zend Server or iPyramid), Zope (Python powered), Microsoft ASP.NET, and more. * * * Changes: * remove permissions on HTTPS (because of troubles; e.g., bank websites); * no longer loads pages twice (by performing a HEAD request instead of a GET one); * remove "tabs" from permissions.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Web Technology Notifier |
ID | fnpgnmindcbkjbpblcklealdhnogmlko |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/web-technology-notifier/fnpgnmindcbkjbpblcklealdhnogmlko |
คำอธิบาย | Displays the Web technology of the current page. |
ขนาดไฟล์ | 34.15 KB |
จำนวนการติดตั้ง | 2,211 |
เวอร์ชันปัจจุบัน | 1.1.2 |
อัปเดตครั้งล่าสุด | 2014-05-30 |
วันที่เผยแพร่ | 2014-05-30 |
คะแนน | 3.10/5 รวมทั้งหมด 41 คะแนน |
ผู้พัฒนา | https://cyril.io |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/cyril/web_technology_notifier.js |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Technology Notifier", "version": "1.1.2", "description": "Displays the Web technology of the current page.", "icons": { "128": "web_technology_notifier-128x128.png" }, "permissions": [ "http:\/\/*\/*" ], "content_scripts": [ { "js": [ "web_technology_notifier.js" ], "matches": [ "http:\/\/*\/*" ], "run_at": "document_start" } ], "page_action": [], "author": "Cyril Wack", "background": { "scripts": [ "web_technologies.js", "event_page.js" ], "persistent": false }, "short_name": "Web Technology" } |