ユーザ用ツール

サイト用ツール


サイドバー

このページの翻訳:



最近の更新



Tag Cloud

13_javascript:02_chrome:01_hello_world

文書の過去の版を表示しています。


01 Chrome拡張機能

manifest.json

manifest.json

{
  "name": "API_SAMPLE",
  "manifest_version": 2,
  "version": "1.0",
  "browser_action": {
    "default_title": "EXTENTION_SAMPLE"
  },
  "background": {
    "scripts": ["background.js"]
  }
}

background.js

background.js

chrome.browserAction.onClicked.addListener(function(tab) {
  alert('Hello Chrome Extentions.');
	// chrome.tabs.sendMessage(tab.id, "Action");
});
13_javascript/02_chrome/01_hello_world.1619069531.txt.gz · 最終更新: 2021/04/22 14:32 by matsui