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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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'" } |