diff options
| author | Teddy Wing | 2014-03-30 13:01:28 -0400 | 
|---|---|---|
| committer | Teddy Wing | 2014-03-30 13:01:28 -0400 | 
| commit | 420cd14f7bc70e66cc2f5ad216892a2c1243398c (patch) | |
| tree | 6ff062dc312e549b4720c4d088ebeba55802b401 | |
| parent | b90db19d4b008bd74cb59800a167e9171609353a (diff) | |
| download | chrome-copy-urls-from-all-tabs-420cd14f7bc70e66cc2f5ad216892a2c1243398c.tar.bz2 | |
Add options page
| -rw-r--r-- | manifest.json | 2 | ||||
| -rw-r--r-- | options.html | 13 | 
2 files changed, 15 insertions, 0 deletions
| diff --git a/manifest.json b/manifest.json index 635ea0e..d12f1ba 100644 --- a/manifest.json +++ b/manifest.json @@ -9,6 +9,8 @@    }, +  "options_page": "options.html", +      "background": {        "scripts": ["background.js"],        "persistent": false diff --git a/options.html b/options.html new file mode 100644 index 0000000..70b72e6 --- /dev/null +++ b/options.html @@ -0,0 +1,13 @@ +<!doctype html> +<html> +<head> +	<title>Chrome Copy URLs From All Tabs - Options</title> +	 +	<style> +		 +	</style> +</head> +<body> +	TEST +</body> +</html> | 
