Web Technology Notifier
Displays the Web technology of the current page.
Vad är Web Technology Notifier?
Web Technology Notifier är en Chrome-tillägg utvecklad av https://cyril.io, och dess huvudfunktion är "Displays the Web technology of the current page.".
Tilläggsskärmbilder
Ladda ner Web Technology Notifier-förlängningens CRX-fil
Ladda ner Web Technology Notifier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Web Technology Notifier |
ID | fnpgnmindcbkjbpblcklealdhnogmlko |
Officiell webbadress | https://chromewebstore.google.com/detail/web-technology-notifier/fnpgnmindcbkjbpblcklealdhnogmlko |
Beskrivning | Displays the Web technology of the current page. |
Filstorlek | 34.15 KB |
Antal Installationer | 2,211 |
Aktuell Version | 1.1.2 |
Senast Uppdaterad | 2014-05-30 |
Publiceringsdatum | 2014-05-30 |
Betyg | 3.10/5 Totalt 41 Betyg |
Utvecklare | https://cyril.io |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/cyril/web_technology_notifier.js |
Stödda Språk | 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" } |