Skip to content

Instantly share code, notes, and snippets.

@akira1908jp
Created September 26, 2012 02:02
Show Gist options
  • Select an option

  • Save akira1908jp/3785572 to your computer and use it in GitHub Desktop.

Select an option

Save akira1908jp/3785572 to your computer and use it in GitHub Desktop.
chrome extension 開発
拡張機能開発
準備
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/
<script type="text/javascript">
window.location = "http://potal.poweredge.co.jp/"
</script>
{
"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