-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfontbucket.js
114 lines (101 loc) · 3.13 KB
/
fontbucket.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
let allFonts = [];
window.onload = getFonts();
function getFonts(){
chrome.storage.sync.get(['allFonts'],function (result){
console.log(result['allFonts']);
allFonts = result['allFonts'];
console.log('1', allFonts);
setOptions();
});
};
document.getElementById("addFontButton").onclick = postFonts;
document.getElementById("applyFontButton").onclick = applyFont;
document.getElementById("deletefont").onclick = deleteFont;
document.getElementById("refresh").onclick = refresh;
function refresh(){
chrome.tabs.executeScript({
code: `history.go(0)`
});
}
function postFonts() {
let url = document.getElementById('fontUrl').value;
if(url.length !=0)
{
flag=0;
for(let i=0;i<allFonts.length;i++)
{
if(url==allFonts[i])
{
flag=1;break;
}
}
if(!flag)
{
let newList = allFonts;
newList.push(url);
console.log('2', newList);
chrome.storage.sync.set({'allFonts':newList}, function() {
console.log('Value is set to ' + newList);
getFonts();
});
document.getElementById("fontUrl").value="";
}
else{
document.getElementById("err").innerHTML="url already exists";
}
}
else{
document.getElementById("err").innerHTML="Please add a valid url";
}
}
function setOptions() {
let fontDropdown = document.getElementById('fonts');
while (fontDropdown.firstChild) {
fontDropdown.removeChild(fontDropdown.firstChild);
}
// setting default dropdown
let option = document.createElement("option");
option.text = "Select your font";
option.disabled = true;
option.selected = true;
fontDropdown.add(option);
//
// adding the fonts to the dropdown
allFonts.forEach(function (item) {
let option = document.createElement("option");
option.text = item;
fontDropdown.add(option);
});
//
}
// Applying font.
function applyFont() {
let selectedFont = document.getElementById('fonts').value;
let link = document.createElement("link");
link.setAttribute("href", selectedFont);
link.setAttribute("rel", "stylesheet");
console.log(link);
let fontName = selectedFont.split('=')[1].split('&')[0];
let fontNameFinal = fontName.replace(/\+/g, ' ');
chrome.tabs.executeScript({
code: `console.log(document.createElement("link").setAttribute("href", '${selectedFont}'));
document.querySelectorAll('*').forEach(function(item){item.style.fontFamily = '${fontNameFinal}'});`
});
}
function deleteFont(){
let url = document.getElementById('fonts').value;
console.log('1', url);
let newList = []
for(let i=0;i<allFonts.length;i++)
{
if(allFonts[i]!= url)
{
newList.push(allFonts[i]);
console.log(allFonts[i]);
}
}
chrome.storage.sync.set({'allFonts':newList}, function() {
console.log('Value is set to ' + newList);
getFonts();
});
}