Web Technology Notifier
Displays the Web technology of the current page.
Wat is Web Technology Notifier?
Web Technology Notifier is een Chrome-extensie ontwikkeld door https://cyril.io, en de belangrijkste functie is "Displays the Web technology of the current page.".
Extensie Screenshots
Download het CRX-bestand van de extensie Web Technology Notifier
Download Web Technology Notifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Web Technology Notifier |
ID | fnpgnmindcbkjbpblcklealdhnogmlko |
Officiële URL | https://chromewebstore.google.com/detail/web-technology-notifier/fnpgnmindcbkjbpblcklealdhnogmlko |
Beschrijving | Displays the Web technology of the current page. |
Bestandsgrootte | 34.15 KB |
Aantal Installaties | 2,211 |
Huidige Versie | 1.1.2 |
Laatst Bijgewerkt | 2014-05-30 |
Publicatiedatum | 2014-05-30 |
Beoordeling | 3.10/5 Totaal 41 Beoordelingen |
Ontwikkelaar | https://cyril.io |
Betalingswijze | free |
Extensiewebsite | https://github.com/cyril/web_technology_notifier.js |
Ondersteunde Talen | 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" } |