Web Technology Notifier
Displays the Web technology of the current page.
什么是Web Technology Notifier?
Web Technology Notifier是由https://cyril.io开发的Chrome扩展程序,该扩展的主要功能是“Displays the Web technology of the current page.”。
扩展截图
下载Web Technology Notifier扩展crx文件
下载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" } |