Created
September 26, 2012 02:02
-
-
Save akira1908jp/3785572 to your computer and use it in GitHub Desktop.
chrome extension 開発
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 拡張機能開発 | |
| 準備 | |
| manifest.json | |
| 推奨 | |
| background.html | |
| パッケージ階層 | |
| └─poweredge | |
| main.html | |
| manifest.json | |
| 参考サイト | |
| APIリファレンス | |
| http://dev.screw-axis.com/doc/chrome_extensions/ | |
| 開発ガイド | |
| http://dev.screw-axis.com/doc/chrome_extensions/guide/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| window.location = "http://potal.poweredge.co.jp/" | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "PowerEdge Potal", | |
| "version": "2.0", | |
| "description": "", | |
| "app": { | |
| "launch": { | |
| "local_path": "main.html" | |
| } | |
| }, | |
| "icons": { "48": "PE-Logo.png", | |
| "128": "PE-Logo.png" }, | |
| "browser_action": { | |
| "default_title": "potal", | |
| "default_icon": "PE-Logo.png" | |
| }, | |
| "permissions": [ "contextMenus", "tabs", "http://potal.poweredge.co.jp/" ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment