如何在浏览器之外编辑Tampermonkey脚本?宁愿使用良好的IDE,也不要尝试在浏览器中进行编辑。

当我在Firefox中开发Greasemonkey脚本时,我曾经能够做到这一点,但是我无法在Chrome中找到.user.js文件。

最佳答案

由于Chrome扩展程序实际上无法访问文件系统(在下面进行说明),因此Tampermonkey将脚本存储在内部存储器中。

您可以做的是allow Tampermonkey to access your local files,将脚本的 header 复制到Tampermonkey以及@require the full script that is located somewhere at your hard disk

“不是真的”表示LocalFileSystem API允许访问文件,但名称和文件也不一定映射到实际文件系统。 Furthermore LocalFileSystem seems to be deprecated now

07-24 19:07