| Index: chrome/content/index.html | 
| =================================================================== | 
| --- a/chrome/content/index.html | 
| +++ b/chrome/content/index.html | 
| @@ -40,16 +40,18 @@ | 
| result.sort(); | 
| return result; | 
| } | 
| let files = getTestFiles(); | 
| for (let file of files) | 
| { | 
| + if (!file.contains("icon")) | 
| + continue; | 
| let script = document.createElement("script"); | 
| script.setAttribute("src", file); | 
| script.setAttribute("type", "text/javascript;version=1.7"); | 
| document.documentElement.appendChild(script); | 
| } | 
| </script> | 
| </head> | 
| <body> |