True Full Page for CodePen
Use CodePen.io Full Page view without any distractions or headers.
True Full Page for CodePen là gì?
True Full Page for CodePen là một tiện ích mở rộng Chrome được phát triển bởi chrisbolin, và tính năng chính của nó là "Use CodePen.io Full Page view without any distractions or headers.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng True Full Page for CodePen
Tải xuống các tệp mở rộng True Full Page for CodePen dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | True Full Page for CodePen |
ID | mlleoaifccleoilmdocpfjfhffmmbjgn |
URL Chính Thức | https://chromewebstore.google.com/detail/true-full-page-for-codepe/mlleoaifccleoilmdocpfjfhffmmbjgn |
Mô tả | Use CodePen.io Full Page view without any distractions or headers. |
Kích Thước Tệp | 20.08 KB |
Số Lần Cài Đặt | 211 |
Phiên Bản Hiện Tại | 1.0.7 |
Cập Nhật Lần Cuối | 2016-02-05 |
Ngày Phát Hành | 2016-02-04 |
Đánh Giá | 5.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | chrisbolin |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/chrisbolin/truefull |
URL Trang Trợ Giúp | https://github.com/chrisbolin/truefull |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |