Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function addCuration (autorun) {
- chrome.storage.local.get({dontdisplay: false}, function (items) {
- dontdisplay = items.dontdisplay
- if (!dontdisplay) {
- var od = document.querySelector('#overlay_Div1')
- if(!od){
- console.log("added on ICON C on popup button")
- var g = document.createElement('div')
- g.setAttribute('id', 'overlay_Div1')
- document.body.appendChild(g)
- document.getElementById('overlay_Div1').innerHTML += window['htmlNewTabButton'](window.location.href)
- if (autorun) {
- addWidget()
- }
- window['less'].refreshStyles()
- window['$']('#curate_button_id').click(openWidget_popup)
- buttonAnimnation(window.location.href)
- }
- }
- })
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement