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 |
官方網址 | 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" } |