forked from kiwibrowser/classic_ntp
-
Notifications
You must be signed in to change notification settings - Fork 2
Backup&Restore
Eduard Ursu edited this page Mar 13, 2021
·
3 revisions
This is a nice tool used to help users fix their problems about ntp.
Sometime bugs are around the corner, and solutions must be found.
In this box can be pasted only javascript code that need to be executed after
Here are a few nice script to execute :
Create an array of elements as following
var tiles=[ { url:"https://www.amazon.it" , title:"Amazon", imgSrc:"https://logos.kiwibrowser.com/amazon.it"}];
Then execute the f_attg() to each element
tiles.forEach(el => { f_attg(el); });
The final script to execute will be
var tiles=[ { url:"https://www.amazon.it" , title:"Amazon", imgSrc:"https://logos.kiwibrowser.com/amazon.it"} ]; tiles.forEach(el => {f_attg(el);});