view-current-source
View the source code of a page at its current state.
Wat is view-current-source?
view-current-source is een Chrome-extensie ontwikkeld door https://www.greinr.com, en de belangrijkste functie is "View the source code of a page at its current state.".
Extensie Screenshots
Download het CRX-bestand van de extensie view-current-source
Download view-current-source-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
This extension shows you the source code of a page as it is right when you right-click and select "view current source" in your context menu. It is especially helpful when you develop a dynamic webpage with a lot of JavaScript involved in building it. You can search the source code with "CTRL+F" to find the code section you want to see. Please feel free to suggest more features. Just leave a comment below or contact/follow me on twitter: https://twitter.com/ThomasGreiner
Basisinformatie over de Extensie
Naam | view-current-source |
ID | bloebkffnmchginelkmdcemamcdeamei |
Officiële URL | https://chromewebstore.google.com/detail/view-current-source/bloebkffnmchginelkmdcemamcdeamei |
Beschrijving | View the source code of a page at its current state. |
Bestandsgrootte | 16.25 KB |
Aantal Installaties | 2,106 |
Huidige Versie | 0.3.2 |
Laatst Bijgewerkt | 2013-10-29 |
Publicatiedatum | 2013-10-29 |
Beoordeling | 3.16/5 Totaal 25 Beoordelingen |
Ontwikkelaar | https://www.greinr.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://www.greinr.com/projects/#!/extensions |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "view-current-source", "version": "0.3.2", "minimum_chrome_version": "18.0", "description": "View the source code of a page at its current state.", "icons": { "16": "res\/logo16.png", "128": "res\/logo128.png" }, "background": { "scripts": [ "script\/background.js" ] }, "options_page": "options.htm", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "script\/script.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "tabs", "contextMenus" ], "content_security_policy": "script-src 'self' https:\/\/platform.twitter.com https:\/\/apis.google.com; object-src 'self'" } |