javascript Windows 8 中的 chrome 扩展目录在哪里?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/21987827/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-27 22:10:07  来源:igfitidea点击:

Where is chrome extension directory in windows 8?

javascriptgoogle-chromegoogle-chrome-extensiondirectory

提问by Ashish

I want to read the source code of chrome extensions. I m not able to find the directory where the extensions are stored.

我想阅读chrome扩展的源代码。我无法找到存储扩展的目录。

I m using windows 8.

我正在使用 Windows 8。

There is not AppData folder in C:\Users\\ and there is DocumentsandSetting folder in C:.

C:\Users\\ 中没有 AppData 文件夹,C: 中有 DocumentsandSetting 文件夹。

回答by melvas

c:\Program Files (x86)\Google\Chrome\Application\<VERSION>\Extensions\

or

或者

C:\Users\{user}\AppData\Local\Google\Chrome\User Data\Default\Extensions

回答by sijo vijayan

========== If the above answer is not working =============

========== 如果上述答案不起作用 ==============

@mevas answer is correct, but in some cases it won't work.

@mevas 答案是正确的,但在某些情况下它不起作用。

For example:- If you have created more than one profile ( google account ) in the chrome browser then you can find the chrome extension source files in the 'Profile X' directory. Path will be something like given below.

例如:- 如果您在 chrome 浏览器中创建了多个配置文件(谷歌帐户),那么您可以在“配置文件 X”目录中找到 chrome 扩展源文件。路径将类似于下面给出的内容。

C:\Users\user\AppData\Local\Google\Chrome\User Data\Profile 1

Refer this page

请参阅此页面

OR

或者

Use the following steps to find the chrome extension directory.

使用以下步骤查找 chrome 扩展目录。

  1. Open your chrome browser and type this url chrome://version/ then hit the enter key
  2. Now it will show you a screen like given below
  3. In this screen you see label 'Profile Path' , it will be your active chrome profile extension directory.
  1. 打开你的 chrome 浏览器并输入这个 url chrome://version/ 然后按回车键
  2. 现在它会向您显示如下所示的屏幕
  3. 在此屏幕中,您会看到标签 'Profile Path' ,它将是您的活动 chrome 配置文件扩展目录。

enter image description here

在此处输入图片说明

enter image description here

在此处输入图片说明