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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chrisbolin และคุณลักษณะหลักของมันคือ "Use CodePen.io Full Page view without any distractions or headers."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย True Full Page for CodePen
ดาวน์โหลดไฟล์ส่วนขยาย True Full Page for CodePen ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |