Chrome 在 Mac 上的哪里存储 userscripts.user.js 文件?
我想知道 chrome 存储已安装的用户脚本的位置。
我在其他地方找不到任何答案。
我在Mac上。
i want to know where chrome stores the userscripts that are installed.
i couldn't find any answer elsewhere.
i'm on a mac.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查找扩展 ID
如果您有许多用户脚本,我们需要查找用户脚本的扩展 ID 以进行下一步。转到地址栏中的 chrome://extensions/,或导航到扳手图标,然后选择“工具”->“扩展”。扩展。
在每个扩展程序下,您都会看到类似
ID: inoibihbncpenbmllpjoonoaadechdng
的条目。这是分机 ID。找到您的脚本,并观察 ID。这些用户脚本通常存储在:
~/Library/Application Support/Google/Chrome/Default/Extensions
如果此路径有意义,您可以跳过下一部分。否则,请按照以下步骤获取更详细的说明。
查找您的扩展文件夹
转至您的用户文件夹。您可以通过打开 Finder 并转到“Go”->“Go”来完成此操作。家。然后我们要导航到 Library/Application Support/Google/Chrome/
如果您没有使用多个 Chrome 配置文件,此时您应该能够转到默认/扩展/
扩展布局
每个扩展都位于一个文件夹中,以他们的分机 ID 命名。在其中,我们将有一个版本号,然后是任何元数据文件。在最新版本的 Chrome 中,用户脚本至少有一个
script.js
文件和manifest.json
。您正在寻找script.js
,其中包含实际的 Javascript。Finding the extension ID
If you have many user scripts, we'll need to find the extension ID of your user script for the next step. Go to chrome://extensions/ in your address bar, or navigate to the wrench icon, then Tools -> Extensions.
Under each extension, you'll see an entry like
ID: inoibihbncpenbmllpjoonoaadechdng
. This is the extension ID. Find your script, and observe the ID.These user scripts are usually stored in:
~/Library/Application Support/Google/Chrome/Default/Extensions
If this path makes sense, you can skip the next section. Otherwise, follow along below for more detailed instructions.
Finding your Extensions folder
Go to your user folder. You can do this by opening Finder, and going to Go -> Home. Then we want to navigate to Library/Application Support/Google/Chrome/
If you're not using multiple Chrome profiles, at this point you should be able to just go to Default/Extensions/
Extension layout
Each extension will be in a folder, named after their extension ID. Inside this, we'll have a version number, then any metadata files. In the latest version of Chrome, userscripts will have at minimum a
script.js
file andmanifest.json
. You're looking forscript.js
, which contains the actual Javascript.