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" } |