From 8a4b605d2b743ad82bd306c532644728c4854c64 Mon Sep 17 00:00:00 2001 From: Sudeep Duggal <5505558+duggalsu@users.noreply.github.com> Date: Tue, 18 Jul 2023 17:04:09 +0530 Subject: [PATCH] - Removed unnecessary host permissions from firefox and chrome manifest --- browser-extension/plugin/manifest.firefox.json | 2 -- browser-extension/plugin/manifest.json | 5 ----- 2 files changed, 7 deletions(-) diff --git a/browser-extension/plugin/manifest.firefox.json b/browser-extension/plugin/manifest.firefox.json index d5254167..68db55fd 100644 --- a/browser-extension/plugin/manifest.firefox.json +++ b/browser-extension/plugin/manifest.firefox.json @@ -8,8 +8,6 @@ "permissions": [ "storage", "webRequest", - "https://*/*", - "https://twitter.com/*", "contextMenus" ], "background": { diff --git a/browser-extension/plugin/manifest.json b/browser-extension/plugin/manifest.json index 107b24cd..e5f9bdb9 100644 --- a/browser-extension/plugin/manifest.json +++ b/browser-extension/plugin/manifest.json @@ -4,11 +4,6 @@ "description": "Moderate your Twitter Feed", "version": "0.1.11", "author": "tattlemade|cis", - "host_permissions": [ - "https://twitter.com/*", - "https://ogbv-plugin.tattle.co.in/", - "https://*/*" - ], "content_security_policy": { "extension_pages": "default-src 'none'; connect-src http://localhost:3000 https://ogbv-plugin.tattle.co.in/ https://uli-media.tattle.co.in/; font-src https://fonts.gstatic.com; object-src 'none'; script-src 'self'; style-src https://fonts.googleapis.com 'self' 'unsafe-inline'; img-src https://uli-media.tattle.co.in/; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; report-uri 'none';" },