True Full Page for CodePen
Use CodePen.io Full Page view without any distractions or headers.
Co to jest True Full Page for CodePen?
True Full Page for CodePen to rozszerzenie Chrome opracowane przez chrisbolin, a jego główną funkcją jest „Use CodePen.io Full Page view without any distractions or headers.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia True Full Page for CodePen
Pobierz pliki rozszerzeń True Full Page for CodePen w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | True Full Page for CodePen |
ID | mlleoaifccleoilmdocpfjfhffmmbjgn |
Oficjalny URL | https://chromewebstore.google.com/detail/true-full-page-for-codepe/mlleoaifccleoilmdocpfjfhffmmbjgn |
Opis | Use CodePen.io Full Page view without any distractions or headers. |
Rozmiar pliku | 20.08 KB |
Liczba instalacji | 211 |
Aktualna Wersja | 1.0.7 |
Ostatnia Aktualizacja | 2016-02-05 |
Data Publikacji | 2016-02-04 |
Ocena | 5.00/5 Łącznie 6 Oceny |
Deweloper | chrisbolin |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/chrisbolin/truefull |
Adres URL Strony Pomocy | https://github.com/chrisbolin/truefull |
Obsługiwane Języki | 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" } } |