Web Technology Notifier
Displays the Web technology of the current page.
Was ist Web Technology Notifier?
Web Technology Notifier ist eine Chrome-Erweiterung, die von https://cyril.io entwickelt wurde, und ihr Hauptmerkmal ist "Displays the Web technology of the current page.".
Erweiterungsscreenshots
Web Technology Notifier-Erweiterungs-CRX-Datei herunterladen
Laden Sie Web Technology Notifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Web Technology Notifier |
ID | fnpgnmindcbkjbpblcklealdhnogmlko |
Offizielle URL | https://chromewebstore.google.com/detail/web-technology-notifier/fnpgnmindcbkjbpblcklealdhnogmlko |
Beschreibung | Displays the Web technology of the current page. |
Dateigröße | 34.15 KB |
Installationsanzahl | 2,211 |
Aktuelle Version | 1.1.2 |
Letztes Update | 2014-05-30 |
Veröffentlichungsdatum | 2014-05-30 |
Bewertung | 3.10/5 Insgesamt 41 Bewertungen |
Entwickler | https://cyril.io |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/cyril/web_technology_notifier.js |
Unterstützte Sprachen | 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" } |