From 65400e7bbf5d09b108e8029920c65a859ab7c83e Mon Sep 17 00:00:00 2001 From: Andy McKay Date: Wed, 16 Nov 2016 15:18:13 -0800 Subject: [PATCH] add in tabs permission to access the title (#140) --- tabs-tabs-tabs/manifest.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tabs-tabs-tabs/manifest.json b/tabs-tabs-tabs/manifest.json index 6600171..93039b0 100644 --- a/tabs-tabs-tabs/manifest.json +++ b/tabs-tabs-tabs/manifest.json @@ -6,13 +6,16 @@ } }, "browser_action": { - "browser_style": true, - "default_title": "Tabs, tabs, tabs", - "default_popup": "tabs.html" + "browser_style": true, + "default_title": "Tabs, tabs, tabs", + "default_popup": "tabs.html" }, "description": "A list of methods you can perform on a tab.", "homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/tabs-tabs-tabs", "manifest_version": 2, "name": "Tabs, tabs, tabs", + "permissions": [ + "tabs" + ], "version": "1.0" }