Location of CRX in chrome after installation?

后端 未结 2 1121
执念已碎
执念已碎 2021-02-02 00:35

Im doing a project that involves browser extension. In firefox i do know the location of where the extensions will be after you download them (under your profile folder) and I w

相关标签:
2条回答
  • 2021-02-02 00:43

    On Windows that's:

    %Chrome Install Path%\User Data\Default\Extensions\%ID%
    

    I suppose it's something similar on Mac.

    0 讨论(0)
  • 2021-02-02 00:59

    CRX files are basically ZIP files. After you install an extension, all the files are in a folder named according to the extension ID. To get the extension ID, go to chrome://extensions/ and make sure Developer mode is checked.

    Installed Chrome extension directories:

    Mac

    /Users/USERNAME/Library/Application Support/Google/Chrome/Default/Extensions
    

    Windows 7

    C:\Users\USERNAME\AppData\Local\Google\Chrome\User Data\Default\Extensions
    

    Windows XP

    C:\Documents and Settings\USERNAME\Local Settings\Application Data\Google\Chrome\User Data\Default
    

    Linux

    ~/.config/google-chrome/Default/Extensions/
    

    Note: Additional directories are created when you have multiple profiles in Chrome. To get to an extension installed for the second profile, replace /Default with /Profile 1.

    0 讨论(0)
提交回复
热议问题