add export plugin

This commit is contained in:
cutls 2021-01-09 21:58:34 +09:00
parent ecff3c7f8f
commit 8745f94d81

View File

@ -356,8 +356,12 @@ function exportSettingsCore() {
//tags //tags
var tagarr = localStorage.getItem('tag') var tagarr = localStorage.getItem('tag')
var favtag = JSON.parse(tagarr) var favtag = JSON.parse(tagarr)
exp.favoriteTags = favtag //plugins
exp.revisons = 2.1 var plugins = localStorage.getItem('plugins')
var plugin = JSON.parse(plugins)
exp.plugins = plugin
exp.revisons = 2.2
exp.meta = {} exp.meta = {}
exp.meta.date = new Date() exp.meta.date = new Date()
exp.meta.thedesk = localStorage.getItem('ver') exp.meta.thedesk = localStorage.getItem('ver')