True Full Page for CodePen
Use CodePen.io Full Page view without any distractions or headers.
True Full Page for CodePen란 무엇입니까?
True Full Page for CodePen은(는) chrisbolin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use CodePen.io Full Page view without any distractions or headers."입니다.
확장 프로그램 스크린샷
True Full Page for CodePen 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
CodePen is a powerful prototyping and demoing tool. Now you can show off your pens without the CodePen header; simply click the True Full Page icon in the location bar to toggle the header on or off. True Full Page currently supports "full", "pen", and "details" views. Please report any bugs to the github page for this extension, https://github.com/chrisbolin/truefull. This extension is not associated with or built by CodePen.
확장 프로그램 기본 정보
이름 | True Full Page for CodePen |
ID | mlleoaifccleoilmdocpfjfhffmmbjgn |
공식 URL | https://chromewebstore.google.com/detail/true-full-page-for-codepe/mlleoaifccleoilmdocpfjfhffmmbjgn |
설명 | Use CodePen.io Full Page view without any distractions or headers. |
파일 크기 | 20.08 KB |
설치 횟수 | 211 |
현재 버전 | 1.0.7 |
최근 업데이트 | 2016-02-05 |
출시 날짜 | 2016-02-04 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | chrisbolin |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/chrisbolin/truefull |
도움말 페이지 URL | https://github.com/chrisbolin/truefull |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "True Full Page for CodePen", "description": "Use CodePen.io Full Page view without any distractions or headers.", "version": "1.0.7", "short_name": "truefull", "minimum_chrome_version": "48.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_title": "Toggle CodePen Header", "default_icon": { "19": "icons\/inactive-19.png", "38": "icons\/inactive-38.png" } }, "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/codepen.io\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "declarativeContent", "storage" ], "icons": { "128": "icons\/inactive-128.png", "64": "icons\/inactive-64.png" } } |