File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 2
2
"manifest_version" : 2 ,
3
3
4
4
"name" : " JWT Debugger" ,
5
- "description" : " The JWT.io debugger as a Chrome extension " ,
5
+ "description" : " The JWT.io debugger as a Web Extension " ,
6
6
"version" : " 2.0.0" ,
7
7
8
8
"browser_action" : {
32
32
}
33
33
},
34
34
35
+ "content_security_policy" : " script-src 'self' https://ssl.google-analytics.com; object-src 'self'" ,
36
+
35
37
"permissions" : [
36
38
" activeTab" ,
37
39
" <all_urls>" ,
Original file line number Diff line number Diff line change @@ -7,3 +7,17 @@ html(lang='en')
7
7
body
8
8
block content
9
9
10
+ script .
11
+ // Google Analytics
12
+ var _gaq = _gaq || [];
13
+ _gaq .push ([' _setAccount' , ' UA-37952868-23' ]);
14
+ _gaq .push ([' _trackPageview' ]);
15
+
16
+ (function () {
17
+ var ga = document .createElement (' script' );
18
+ ga .type = ' text/javascript' ;
19
+ ga .async = true ;
20
+ ga .src = ' https://ssl.google-analytics.com/ga.js' ;
21
+ var s = document .getElementsByTagName (' script' )[0 ];
22
+ s .parentNode .insertBefore (ga, s);
23
+ })();
You can’t perform that action at this time.
0 commit comments