Skip to content

Commit b88eb97

Browse files
committed
Don't whitelist any sites by default
1 parent 1beca8a commit b88eb97

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

background.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
config.defaults({
2-
whitelist: ['^https?://chrome\\.google\\.com/extensions']
2+
whitelist: []
33
});
44

55
function isWhitelisted(url) {

options.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
<h1>Kill Evil Options</h1>
1313
<p>
1414
To permit evil on particular sites, enter regular expressions
15-
(one per line) here.
15+
(one per line) here. For example,
16+
<code>^https?://mail\.google\.com/</code> for GMail.
1617
</p>
1718
<textarea id="whitelist" cols="80" rows="24"></textarea>
1819
<div class="actions">

0 commit comments

Comments
 (0)