Web Technology Notifier
Displays the Web technology of the current page.
Web Technology Notifier là gì?
Web Technology Notifier là một tiện ích mở rộng Chrome được phát triển bởi https://cyril.io, và tính năng chính của nó là "Displays the Web technology of the current page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Web Technology Notifier
Tải xuống các tệp mở rộng Web Technology Notifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Web Technology Notifier |
ID | fnpgnmindcbkjbpblcklealdhnogmlko |
URL Chính Thức | https://chromewebstore.google.com/detail/web-technology-notifier/fnpgnmindcbkjbpblcklealdhnogmlko |
Mô tả | Displays the Web technology of the current page. |
Kích Thước Tệp | 34.15 KB |
Số Lần Cài Đặt | 2,211 |
Phiên Bản Hiện Tại | 1.1.2 |
Cập Nhật Lần Cuối | 2014-05-30 |
Ngày Phát Hành | 2014-05-30 |
Đánh Giá | 3.10/5 Tổng số 41 Đánh Giá |
Nhà Phát Triển | https://cyril.io |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/cyril/web_technology_notifier.js |
Ngôn Ngữ Được Hỗ Trợ | 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" } |