| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- md.inject = ({storage: {state}}) => (id) => {
- chrome.scripting.executeScript({
- target: {tabId: id},
- args: [{
- theme: state.theme,
- raw: state.raw,
- themes: state.themes,
- content: state.content,
- compiler: state.compiler,
- icon: state.icon,
- }],
- func: (_args) => {
- document.querySelector('pre').style.visibility = 'hidden'
- args = _args
- },
- injectImmediately: true
- })
- chrome.scripting.insertCSS({
- target: {tabId: id},
- files: [
- '/content/index.css',
- ]
- })
- chrome.scripting.executeScript({
- target: {tabId: id},
- files: [
- '/vendor/mithril.min.js',
- state.content.syntax && '/vendor/prism.min.js',
- state.content.emoji && '/content/emoji.js',
- state.content.mermaid && ['/vendor/mermaid.min.js', '/content/mermaid.js'],
- state.content.mathjax && ['/content/mathjax.js', '/vendor/mathjax/tex-mml-chtml.js'],
- '/content/index.js',
- '/content/scroll.js',
- state.content.autoreload && '/content/autoreload.js',
- ].filter(Boolean).flat(),
- injectImmediately: true
- })
- }
|