-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.js
52 lines (44 loc) · 1.02 KB
/
content.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
*
*
**/
var getMetaValue = function (attribute) {
var meta = document.getElementsByTagName('meta'),
len = meta.length;
for (var i = 0; i < len; i++) {
if (meta[i].getAttribute('name') == attribute) {
return meta[i].getAttribute('content');
}
}
return '';
}
/**
*
*
**/
var getOGValue = function (attribute) {
var meta = document.getElementsByTagName('meta'),
len = meta.length;
for (var i = 0; i < len; i++) {
if (meta[i].getAttribute('property') == attribute) {
return meta[i].getAttribute('content');
}
}
return '';
}
/**
*
*
**/
chrome.runtime.onMessage.addListener(function(msg, sender, sendResponse) {
sendResponse({
1: location.href,
2: document.title,
3: getMetaValue('description'),
4: getMetaValue('keywords'),
5: getOGValue('og:title'),
6: getOGValue('og:type'),
7: getOGValue('og:description'),
8: getOGValue('og:image'),
});
});