From 8256118632b7fdd3988116b0eaae1e6e710559ba Mon Sep 17 00:00:00 2001 From: Donnie Date: Sat, 30 Mar 2024 11:02:07 +0000 Subject: [PATCH] bump version --- package.json | 2 +- scripts/chrome.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index b0760e1..ec71e6c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "better-snapchat", - "version": "1.2.4", + "version": "1.2.5", "description": "This browser extension enhances your web.snapchat.com experience by adding several essential privacy features.", "main": "esbuild.config.js", "scripts": { diff --git a/scripts/chrome.js b/scripts/chrome.js index 53db8f7..2d02dcc 100644 --- a/scripts/chrome.js +++ b/scripts/chrome.js @@ -41,14 +41,14 @@ const alias = require('esbuild-plugin-alias'); }, content_scripts: [ { - matches: ['https://*.snapchat.com/*'], + matches: ['https://web.snapchat.com/*'], js: ['./build/script.js'], css: ['./build/script.css'], run_at: 'document_start', world: 'MAIN', }, ], - host_permissions: ['https://*.snapchat.com/*'], + host_permissions: ['https://web.snapchat.com/*'], browser_specific_settings: { gecko: { id: 'extension@better-snapchat.com' } }, };