From a03d7e2f83556771e3a014cae0b91b48fe265929 Mon Sep 17 00:00:00 2001 From: Movitz Sunar Date: Wed, 12 Nov 2025 12:29:23 +0100 Subject: [PATCH 1/2] add http and https options --- manifest.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/manifest.yml b/manifest.yml index a4bdcdf..82f7ff3 100644 --- a/manifest.yml +++ b/manifest.yml @@ -23,3 +23,9 @@ inputs: - name: self description: When true, restricts the execution of scripts to those that originate from the same origin (protocol, domain, and port) as the document. default: true + - name: https + description: When true, allows execution of scripts from https origins. + default: false + - name: http + description: When true, allows execution of scripts from http origins. + default: false From 97ac40564701692912574005fdd1e53a118cdf2d Mon Sep 17 00:00:00 2001 From: Karin Hendrikse <30577427+khendrikse@users.noreply.github.com> Date: Thu, 13 Nov 2025 10:58:57 +0100 Subject: [PATCH 2/2] feat: add http and https options