8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Chromeの新規タブを上書きするエクステンションを作りたいときの manifest

Last updated at Posted at 2013-02-06
{
  "name": "拡張の名前",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "説明",
  "chrome_url_overrides" : {
    "newtab": "index.html"
  },
  "permissions": [
    "tabs"
  ],
  "homepage_url": "URL",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}

デフォルトのホーム画面を表示させる

chrome.tabs.update( {url:"chrome-internal://newtab/"} );
8
8
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
8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?