aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
diff options
context:
space:
mode:
authorTeddy Wing2014-03-24 18:32:11 -0400
committerTeddy Wing2014-03-24 18:32:11 -0400
commitb5f69d0b3426e86507a88e6f3bda5e758a8fd497 (patch)
tree3f6027e712cbfd689432532688fb4c6d325471a7 /manifest.json
downloadchrome-copy-urls-from-all-tabs-b5f69d0b3426e86507a88e6f3bda5e758a8fd497.tar.bz2
Initial commit: initial working version
From 2014.03.17. Clicking on the extension's icon button opens a new tab containing a textarea with all URLs in open tabs collected by window.
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json20
1 files changed, 20 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..635ea0e
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,20 @@
+{
+ "manifest_version": 2,
+
+ "name": "Chrome Copy URLs From All Tabs",
+ "description": "What the name says",
+ "version": "0.0.1",
+
+ "browser_action": {
+
+ },
+
+ "background": {
+ "scripts": ["background.js"],
+ "persistent": false
+ },
+
+ "permissions": [
+ "tabs"
+ ]
+}