From c8a19e1a12b0d4ba573febadb61b91c870d6fe95 Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Sat, 8 Mar 2014 10:11:30 +0100 Subject: [PATCH] Don't use a regex, normal globbing should be sufficient --- googleplus-notification.user.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/googleplus-notification.user.js b/googleplus-notification.user.js index 70812ea..311f955 100644 --- a/googleplus-notification.user.js +++ b/googleplus-notification.user.js @@ -1,10 +1,12 @@ // ==UserScript== // @name Google+ desktop notification // @namespace https://www.schtobia.de/ -// @version 0.2.1 +// @version 0.2.2 // @description Google+ desktop notification (based on HTML5) -// @include /^https?://plus\.google\.com/u/0/.*$/ -// @exclude /^https?://plus\.google\.com/u/0/_/.*$/ +// @include http://plus.google.com/u/0/* +// @include https://plus.google.com/u/0/* +// @exclude http://plus.google.com/u/0/_/* +// @exclude https://plus.google.com/u/0/_/* // @grant GM_getValue // @run-at document-end // @downloadURL https://github.com/schtobia/greasemonkey/raw/master/googleplus-notification.user.js