File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 3
3
"short_name" : " Profanity Filter" ,
4
4
"author" : " phermium" ,
5
5
"manifest_version" : 2 ,
6
- "version" : " 1.0.1 " ,
6
+ "version" : " 1.0.2 " ,
7
7
"description" : " Hide offensive words on the webpages you visit" ,
8
8
"icons" : {
9
9
"16" : " icons/icon16.png" ,
Original file line number Diff line number Diff line change @@ -338,7 +338,6 @@ function wordAdd(event) {
338
338
if ( ! arrayContains ( Object . keys ( config . words ) , word ) ) {
339
339
config . words [ word ] = { "matchMethod" : 1 , "words" : [ ] } ;
340
340
saveOptions ( event , config ) ;
341
- dynamicList ( Object . keys ( config . words ) , 'wordSelect' , 'Words to Filter' ) ;
342
341
document . getElementById ( 'wordText' ) . value = "" ;
343
342
} else {
344
343
updateStatus ( 'Word already in list.' , true , 3000 ) ;
@@ -366,7 +365,6 @@ function wordRemove(event) {
366
365
if ( word != "" ) {
367
366
delete config . words [ word ] ;
368
367
saveOptions ( event , config ) ;
369
- dynamicList ( Object . keys ( config . words ) , 'wordSelect' , 'Words to Filter' ) ;
370
368
}
371
369
}
372
370
You can’t perform that action at this time.
0 commit comments