From 002e0091683390fff78b1738a382940311a73c9b Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Mon, 28 Mar 2016 20:09:30 -0700 Subject: [PATCH] Reorg and add stub options page --- ext/background.html | 12 ------------ ext/bg/background.html | 12 ++++++++++++ ext/bg/options.html | 10 ++++++++++ ext/manifest.json | 3 ++- 4 files changed, 24 insertions(+), 13 deletions(-) delete mode 100644 ext/background.html create mode 100644 ext/bg/background.html create mode 100644 ext/bg/options.html diff --git a/ext/background.html b/ext/background.html deleted file mode 100644 index e44c4b59..00000000 --- a/ext/background.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/ext/bg/background.html b/ext/bg/background.html new file mode 100644 index 00000000..f214a209 --- /dev/null +++ b/ext/bg/background.html @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/ext/bg/options.html b/ext/bg/options.html new file mode 100644 index 00000000..5da40480 --- /dev/null +++ b/ext/bg/options.html @@ -0,0 +1,10 @@ + + + + + Here go options + + + Options! + + diff --git a/ext/manifest.json b/ext/manifest.json index 9b244b16..9c113649 100644 --- a/ext/manifest.json +++ b/ext/manifest.json @@ -5,7 +5,8 @@ "version": "0.0.1", "browser_action": {"default_icon": "icon.png"}, - "background": {"page": "background.html"}, + "background": {"page": "bg/background.html"}, + "options_page": "bg/options.html", "content_scripts": [{ "matches": ["*://*/*"],