LoginSignup
3
3

More than 5 years have passed since last update.

GoogleChrome appの作り方

Posted at

単純に、chromeから自分のブログの管理ページへ飛んでくれるリンクを作りたかった。ただ、blogとして利用しているwordpressは基本的に好きなサーバを借りてそこにphpとかをおいて動かすブログ。
当然ながら僕の管理ページに飛んでくれるリンクアプリはchromeストアにない。
「よし、リンクを作ろう」と決意し、ものの15分で完成!!
実に簡単で拍子抜けした。
Screen Shot 2013-11-22 at 23.39.39.png


作り方

空のフォルダーを用意。
次に、以下の二つのコンテンツを保存

manifest.json
{
  "name": "wordpress",
  "version": "1.0",
  "description": "",
  "manifest_version": 2,
  "icons": {"128": "icon.png"},
  "app": {
    "default_title": "wordpress",
    "launch": {
        "web_url": "http://steelydylan.phpapps.jp/wp-admin/"
    }
  }
}

アイコン画像

icon.png

あとは、chromeを開き、拡張機能の項目に移動し、
「load unpacked extension」をクリックし、先ほど作成したフォルダを選択するだけ!!

Screen Shot 2013-11-22 at 23.49.55.png

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3