view-current-source
View the source code of a page at its current state.
view-current-sourceとは何ですか?
view-current-sourceはhttps://www.greinr.comによって開発されたChromeの拡張機能で、その主な機能は「View the source code of a page at its current state.」です。
拡張機能のスクリーンショット
view-current-source拡張機能のCRXファイルをダウンロード
view-current-source拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | view-current-source |
ID | bloebkffnmchginelkmdcemamcdeamei |
公式URL | https://chromewebstore.google.com/detail/view-current-source/bloebkffnmchginelkmdcemamcdeamei |
説明 | View the source code of a page at its current state. |
ファイルサイズ | 16.25 KB |
インストール数 | 2,106 |
現在のバージョン | 0.3.2 |
最終更新日 | 2013-10-29 |
公開日 | 2013-10-29 |
評価 | 3.16/5 合計 25 レビュー |
開発者 | https://www.greinr.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://www.greinr.com/projects/#!/extensions |
対応言語 | 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'" } |