diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 90d8cb3..9b76f35 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -12,7 +12,7 @@ "description": "Extension description" }, "blacklistLabel": { - "message": "Blacklisted words (case insensitive):", + "message": "Blacklisted words:", "description": "Blacklist description" }, "blacklistSave": { diff --git a/config.css b/config.css index 4919e90..876ecf8 100644 --- a/config.css +++ b/config.css @@ -1,14 +1,17 @@ body { - min-width: 200pt; - min-height: 200pt; + min-width: 250pt; + min-height: 150pt; + font-size: 24pt; } #blacklist { width: 100%; height: 70%; + font-size: 16pt; } #confirm { width: 100%; height: 20%; + font-size: 24pt; } \ No newline at end of file diff --git a/manifest.json b/manifest.json index ad39903..1fb8a92 100644 --- a/manifest.json +++ b/manifest.json @@ -5,7 +5,8 @@ "description": "__MSG_extDesc__", "author": "chemicalcrux", "permissions": [ - "*://www.furaffinity.net/", + "http://www.furaffinity.net/", + "https://www.furaffinity.net/", "storage" ], "web_accessible_resources": [ @@ -17,7 +18,7 @@ "content_scripts": [ { "run_at": "document_end", - "matches": ["*://www.furaffinity.net/"], + "matches": ["http://www.furaffinity.net/", "https://www.furaffinity.net/"], "js": ["filter.js"] } ],