From 52c3f8301666c639d413999eb0bd88626d78f426 Mon Sep 17 00:00:00 2001 From: Said Achmiz Date: Wed, 6 Feb 2019 13:39:16 -0500 Subject: [PATCH] Removed unnecessary permission from manifest --- src/platform/chrome/manifest.json | 4 ++-- src/platform/firefox/manifest.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/platform/chrome/manifest.json b/src/platform/chrome/manifest.json index 9a56498..b0d591f 100644 --- a/src/platform/chrome/manifest.json +++ b/src/platform/chrome/manifest.json @@ -1,11 +1,11 @@ { "manifest_version": 2, "name": "AlwaysKillSticky", - "version": "1.2.5", + "version": "1.2.5.1", "description": "Get rid of sticky elements on websites - permanently!", "author": "Said Achmiz", "homepage_url": "https://git.sr.ht/~achmizs/AlwaysKillSticky.git", - "permissions": [ "activeTab", "storage" ], + "permissions": [ "storage" ], "background": { "scripts": ["background.js"], "persistent": false diff --git a/src/platform/firefox/manifest.json b/src/platform/firefox/manifest.json index f295134..e82e438 100644 --- a/src/platform/firefox/manifest.json +++ b/src/platform/firefox/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "AlwaysKillSticky", - "version": "1.2.5", + "version": "1.2.5.1", "description": "Get rid of sticky elements on websites - permanently!", "author": "Said Achmiz", "browser_specific_settings": { @@ -11,7 +11,7 @@ } }, "homepage_url": "https://git.sr.ht/~achmizs/AlwaysKillSticky.git", - "permissions": [ "activeTab", "storage" ], + "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] },