LoginSignup
6
5

More than 5 years have passed since last update.

最小構成のGoogle Chrome拡張を作る

Last updated at Posted at 2015-03-16

Google Chrome拡張を作るには少なくともmanifest.jsonが必要です。

manifest.jsonを作る

次のようなmanifest.jsonを作ります。

{
  "name": "Sample",
  "version": "1",
  "manifest_version": 2,
  "description": "This is sample"
}

Google ChromeでGoogle Chrome拡張を読み込む

  1. Google Chromeでchrome://extensions/を開く
  2. 右上のデベロッパー モードにチェックを入れる
  3. パッケージ化されていない拡張機能を読み込む...ボタンを押す
  4. manifest.jsonを入れたフォルダを開く

参考リンク

合わせて読みたい

6
5
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
6
5