1
0

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.

browser extension の設定ページ

Last updated at Posted at 2018-06-06

はじめに

Firefoxのaddon用設定ページ作成して javascript で値を使えるようにします。

設定ページと値の取得コード

メモ

  • 値を取得したあとにjavascript中で使うのにはグローバル変数でないといけない。
  • Javaとは変数のスコープが違う。
  • 1回目の実行時には値が取れていなかったので、グローバルスコープで browser.storage.local.get を実行した。

以下のファイルを options とかのディレクトリに配置してつかいます。

options.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
  </head>
  <body>
    <form>
        <label>name<input type="text" id="name" ></label>
        <button type="submit">Save</button>
    </form>
    <script src="options.js"></script>
  </body>
</html>
options.js
function saveOptions(e) {
  e.preventDefault();
  browser.storage.local.set({
    name: document.querySelector("#name").value
  });
}

function restoreOptions() {

  function setCurrentChoice(result) {
    document.querySelector("#name").value = result.name || "blue";
  }

  function onError(error) {
    console.log("Error: ${error}");
  }

  var getting = browser.storage.local.get("name");
  getting.then(setCurrentChoice, onError);
}

document.addEventListener("DOMContentLoaded", restoreOptions);
document.querySelector("form").addEventListener("submit", saveOptions);
background.js
browser.contextMenus.create({
    id: "name",
    title: "get name",
    contexts: ["selection"]
});

var name = "blue";
browser.contextMenus.onShown.addListener(info => {
	getting = browser.storage.local.get("name", function (value) {
	    name = value.name;
	    console.log("getting " + name);
	});
});

browser.contextMenus.onClicked.addListener((info, tab) => {
    if (info.menuItemId === "name" ){
        console.log(name);
    }
});
manifest.json
{
	"manifest_version": 2,
	"name": "Sample Tool",
	"description": "Sample Tool for Firefox",
	"version": "1.0",
	"homepage_url": "https://sample.com",
	"icons": {
		"48": "icons/sample.png"
	},
	"applications": {
		"gecko": {
			"id": "sample@sample.com",
			"strict_min_version": "42.0", 
			"update_url":"https://sample.com/"
		}
	},
	"background": {
		"scripts": [
			"background.js"
		]
	},
	"options_ui": {
    	"page": "options.html"
    },
	"permissions": [
		"contextMenus",
		"storage"
	],
	"content_scripts": [
		{
			"matches": [
				"https://qiita.com/keniooi/*"
			],
			"js": [
				"sample.js"
			]
		}
	]
}

icon/sample.png
sample.js << 空ファイルでよい
が他に必要になります。

参考

https://developer.mozilla.org/ja/Add-ons/WebExtensions/Implement_a_settings_page
https://msdn.microsoft.com/ja-jp/library/bzt2dkta(v=vs.94).aspx
https://github.com/mdn/webextensions-examples/blob/master/menu-labelled-open/background.js

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?