diff options
| -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> | 
