Gist Previewer
Preview gist html/js/css code.
Gist Previewerとは何ですか?
Gist PreviewerはDavid Orrによって開発されたChromeの拡張機能で、その主な機能は「Preview gist html/js/css code.」です。
拡張機能のスクリーンショット
Gist Previewer拡張機能のCRXファイルをダウンロード
Gist Previewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Renders Gist repos that contain HTML, JavaScript, or CSS files. Places a "Preview HTML" button in the top bar of each HTML file. Clicking the button renders that HTML file with all JavaScript and CSS files included.
拡張機能の基本情報
名前 | Gist Previewer |
ID | akkophfgoandjomabfeppbnbgmejaofc |
公式URL | https://chromewebstore.google.com/detail/gist-previewer/akkophfgoandjomabfeppbnbgmejaofc |
説明 | Preview gist html/js/css code. |
ファイルサイズ | 11.01 KB |
インストール数 | 92 |
現在のバージョン | 2.0.0 |
最終更新日 | 2017-04-03 |
公開日 | 2017-04-02 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | David Orr |
支払い方法 | free |
ヘルプページのURL | https://github.com/davidyorr/gist-previewer |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gist Previewer", "description": "Preview gist html\/js\/css code.", "version": "2.0.0", "content_scripts": [ { "matches": [ "https:\/\/gist.github.com\/*" ], "js": [ "js\/gistpreviewer.js" ], "css": [ "css\/gistpreviewer.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/background.js" ] }, "icons": { "16": "img\/icon.png", "48": "img\/icon.png", "128": "img\/icon.png" }, "manifest_version": 2 } |