hymbz / ComicReadScript

为漫画站增加双页阅读模式及优化使用体验。
https://comic-read.pages.dev/
GNU Affero General Public License v3.0
554 stars 26 forks source link

[PWA Feature]: Support directly pasting url's into window wuthout prompt #132

Closed EnergoStalin closed 6 months ago

EnergoStalin commented 6 months ago

Something like that

window.addEventListener("paste", (event) => {
    const url = event.clipboardData.getData('text/plain')
    if(!url.startsWith('http') || !supportedExtensions.includes(url.split('.').pop())) {
        return
    }
    loadArchive(url)
});
hymbz commented 6 months ago

Already updated.

EnergoStalin commented 6 months ago

Thanks!