Enable a non-PlayStore UserScript with Chrome 35 and above

后端 未结 4 777
傲寒
傲寒 2021-02-01 07:48

Since the version 35 of Google Chrome, the execution of any extension installed outside of the Google\'s PlayStore is blocked and cannot be enabled from the ext

4条回答
  •  暖寄归人
    2021-02-01 08:26

    The continuation of solution number 1 from @user2428118 answer.

    To ensure that you ALWAYS starts Chrome with --enable-easy-off-store-extension-install flag you, can use (additional to editing all shortcuts in menu start etc.) this registry file:

    Windows Registry Editor Version 5.00
    
    [HKEY_CLASSES_ROOT\http\shell\open\command]
    @="\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\" --enable-easy-off-store-extension-install -- \"%1\""
    
    [HKEY_CLASSES_ROOT\https\shell\open\command]
    @="\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\" --enable-easy-off-store-extension-install -- \"%1\""
    

    Replace C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe with actual path to chrome.exe in your system.

提交回复
热议问题