Web Technology Notifier
Displays the Web technology of the current page.
What is Web Technology Notifier?
Web Technology Notifier is a Chrome extension developed by https://cyril.io, and its main feature is "Displays the Web technology of the current page.".
Extension Screenshots
Download Web Technology Notifier Extension CRX File
Download Web Technology Notifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Web Technology Notifier |
ID | fnpgnmindcbkjbpblcklealdhnogmlko |
Official URL | https://chromewebstore.google.com/detail/web-technology-notifier/fnpgnmindcbkjbpblcklealdhnogmlko |
Description | Displays the Web technology of the current page. |
File Size | 34.15 KB |
Installation Count | 2,211 |
Current Version | 1.1.2 |
Last Updated | 2014-05-30 |
Publish Date | 2014-05-30 |
Rating | 3.10/5 Total 41 Ratings |
Developer | https://cyril.io |
Payment Type | free |
Extension Website | https://github.com/cyril/web_technology_notifier.js |
Supported Languages | 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" } |