File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " metaCheckMan" ,
3
- "version" : " 1.0.0 " ,
3
+ "version" : " 1.0.1 " ,
4
4
"manifest_version" : 3 ,
5
5
"description" : " metaデータのチェック" ,
6
6
"host_permissions" : [" <all_urls>" ],
Original file line number Diff line number Diff line change @@ -4,8 +4,10 @@ export const defaultMetaKeys: { [key: string]: string } = {
4
4
charset : "1" ,
5
5
keywords : "1" ,
6
6
description : "1" ,
7
+ robots : "1" ,
7
8
shortcut : "1" ,
8
9
icon : "1" ,
10
+ canonical : "1" ,
9
11
"apple-touch-icon" : "1" ,
10
12
"og:site_name" : "1" ,
11
13
"og:title" : "1" ,
@@ -53,6 +55,11 @@ export const metaList: {
53
55
attribute : "content" ,
54
56
group : "" ,
55
57
} ,
58
+ robots : {
59
+ selector : "meta[name='robots']" ,
60
+ attribute : "content" ,
61
+ group : "" ,
62
+ } ,
56
63
shortcut : {
57
64
selector : "link[rel*='shortcut']" ,
58
65
attribute : "href" ,
@@ -71,6 +78,12 @@ export const metaList: {
71
78
type : "link" ,
72
79
group : "" ,
73
80
} ,
81
+ canonical : {
82
+ selector : "link[rel*='canonical']" ,
83
+ attribute : "href" ,
84
+ type : "link" ,
85
+ group : "" ,
86
+ } ,
74
87
"og:site_name" : {
75
88
selector : "meta[property='og:site_name']" ,
76
89
attribute : "content" ,
You can’t perform that action at this time.
0 commit comments