歌剧控制台中的红色警告消息

发布于 2025-02-03 15:14:02 字数 1066 浏览 6 评论 0原文

红色的消息出现,大概是在浏览器自动加速后出现:

警告!

此区域仅供开发人员使用。众所周知,骗子鼓励人们在此处复制/粘贴信息到黑客帐户。如果您不确定,请勿继续。

浏览器是Opera 87.0.4390.36。看来它不适用于铬/铬,但这需要得到确认。相关用户代理部分是:

AppleWebkit/537.36(Khtml,像Gecko一样)Chrome/101.0.4951.67 Safari/537.36 OPR/87.0.4390.36

在较小的屏幕上,它窃取了该点的空间,从而使点控制台选项卡变得更少。

我在DevTools首选项中没有看到可以将其关闭的设置。有没有办法在不降低浏览器的情况下在本地禁用此消息?

upd:它到达 opera 87 < /a>, changelog 当前仅在缓存中可用。这是已知问题并且可能需要一些时间和用户活动才能实现后果。尽管如此,对问题的快速解决将不胜感激。

Red-colored message appeared, presumably after browser auto-update:

devtools console red message

Warning!

This area is for use by developers only. Scammers have been known to encourage people to copy/paste information here to hack accounts. Do not proceed if you are unsure.

The browser is Opera 87.0.4390.36. It seems it doesn't apply to Chrome/Chromium but this needs to be confirmed. The relevant user agent part is:

AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36 OPR/87.0.4390.36

On smaller screens it steals the space to the point console tab becomes much less usable.

I see no settings in devtools preferences that could turn it off. Is there a way I can disable this message locally without downgrading the browser?

UPD: It arrived in Opera 87, the changelog is currently available in cache only. It's a known issue and may take some time and user activity for the company to realize the consequences. Still, a quick fix for the problem would be highly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

悲喜皆因你 2025-02-10 15:14:02

基于@sesametastelikecheese的答案。本指南要简单得多。
修复错误:仅在首先打开控制台面板时,扩展才能起作用。始终现在可以工作。


创建一个扩展程序来杀死歌剧控制台警告,

这将使Opera继续更新(对安全性有益),并允许您使用未来几个月发布的最新编程语言功能。

在此问题中添加此问题以获取未来的更新。


硬盘上的任何位置创建一个文件夹: kill_opera_console_warning

直接在文件夹中创建以下文件。

subtest.json

{
  "manifest_version"    :  3

, "name"                :  "AAA: Kill Opera Console Warning"
, "version"             :  "1.1"

, "devtools_page"       :  "devtools_page.html"

, "content_scripts"     :
    [
        {
          "js"          :  [ "inject_into_devtools.js" ]
        , "matches"     :  [ "<all_urls>" ]
        , "run_at"      :   "document_start"
        }
    ]

// Same key as kgejglhpjiefppelpmljglcjbhoiplfn (ChromeVox)
// see : https://stackoverflow.com/questions/17042547/how-to-inject-javascript-into-chrome-devtools-itself/17044405#17044405
, "key"                 :   "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDEGBi/oD7Yl/Y16w3+gee/95/EUpRZ2U6c+8orV5ei+3CRsBsoXI/DPGBauZ3rWQ47aQnfoG00sXigFdJA2NhNK9OgmRA2evnsRRbjYm2BG1twpaLsgQPPus3PyczbDCvhFu8k24wzFyEtxLrfxAGBseBPb9QrCz7B4k2QgxD/CwIDAQAB"
}

devtools_page.html

<html>
<head></head>
<body><script src="devtools_page_helper.js"></script></body>
</html>

devtools_page_helper.js

function apply_style_sheet_for_current_panel_only( )
    {
    const devtools_custom_css = `.console-view > div[class^="console-warning-" i] { display : none !important ; }` ;

    chrome.devtools.panels.applyStyleSheet( devtools_custom_css ) ;
    }

// run for whatever panel opens by default
apply_style_sheet_for_current_panel_only( ) ;

// fallback if Console panel was not opened by default (most likely due to Elements panel opening first)
chrome.devtools.panels.elements.onSelectionChanged.addListener( apply_style_sheet_for_current_panel_only ) ;

inject_into_into_devtools.js

// necessary for DevTools in private windows
if  (  /^(?:chrome-|opera-)?devtools:$/gi.test( window.location.protocol ) === true  )
    {
    const devtools_custom_css = `.console-view > div[class^="console-warning-" i] { display : none !important ; }` ;

    const add_css_rules = ( css_rules ) => { ( document.head || document.documentElement ).appendChild( document.createElement("style") ).innerHTML = css_rules ; } ;

    // applies to all panels
    add_css_rules( devtools_custom_css ) ;
    }

您现在应该拥有以下文件结构:

+ kill_opera_console_warning
|-- manifest.json
|-- devtools_page.html
|-- devtools_page_helper.js
|-- inject_into_devtools.js

添加到opera

  1. 转到扩展页面: ctrl+shift+shift+e

    • 启用“开发人员模式” (右上)
  2. 安装扩展程序:

    • 单击加载打开包装按钮(左上)

    • 找到您的“ kill_opera_console_warning”文件夹

    • 进入文件夹,单击选择文件夹

    • 您创建的扩展应该加载。

  3. 更新扩展设置:

    • 查找扩展:“ AAA:杀死歌剧控制台警告”

    • 勾选“允许在Incognito”复选框

    • 勾选“允许访问搜索页面结果”复选框


现在更改DevTools中的一个设置,重新启动Opera和Test Extension

扩展程序现在正在工作,但要涵盖边缘案例,您需要更新设置。

  1. 关闭DevTools的所有实例。

  2. 打开一个新的普通窗口 (不是隐身窗口)

    • 转到“大约:空白”,打开devtools ctrl+shift+i
  3. 打开DevTools设置 f1

    • 应该有很多带有复选框的设置
    • 转到“实验”选项卡(左上)
  4. 设置>允许扩展名加载自定义样式表启用。

    • 可能是列表开头的第一个复选框。
    • 否则使用过滤器搜索“样式表”。
  5. 关闭所有内容并重新启动:

    • 关闭DevTools设置,关闭DevTools。
    • 退出歌剧,等待5秒并重新启动歌剧。
    • 重复步骤2-3要检查设置。
  6. 测试扩展正在工作:

    • 在随机网页上,右键单击“检查元素”
    • 切换到控制台面板进行测试扩展工作。
  7. 未来几个月解决的问题。


是否停止工作。

Opera可能已经更新了有关警告消息的类。编辑者希望在此答案中更新扩展名。如果发生这种情况,请完全删除扩展名。然后再次按照说明。

Based on answer by @SesameTastelikecheese. This guide is much simpler.
Fixes bug: Extension would only work if console panel was opened first. Always works now.


CREATE AN EXTENSION TO KILL OPERA CONSOLE WARNING

This will allow Opera to continue to be updated (good for security) and allow you to use the latest programming language features released in the coming months.

Bookmark this question for future updates.


Create a folder anywhere on your hard drive: kill_opera_console_warning

Create the following files directly inside the folder.

manifest.json

{
  "manifest_version"    :  3

, "name"                :  "AAA: Kill Opera Console Warning"
, "version"             :  "1.1"

, "devtools_page"       :  "devtools_page.html"

, "content_scripts"     :
    [
        {
          "js"          :  [ "inject_into_devtools.js" ]
        , "matches"     :  [ "<all_urls>" ]
        , "run_at"      :   "document_start"
        }
    ]

// Same key as kgejglhpjiefppelpmljglcjbhoiplfn (ChromeVox)
// see : https://stackoverflow.com/questions/17042547/how-to-inject-javascript-into-chrome-devtools-itself/17044405#17044405
, "key"                 :   "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDEGBi/oD7Yl/Y16w3+gee/95/EUpRZ2U6c+8orV5ei+3CRsBsoXI/DPGBauZ3rWQ47aQnfoG00sXigFdJA2NhNK9OgmRA2evnsRRbjYm2BG1twpaLsgQPPus3PyczbDCvhFu8k24wzFyEtxLrfxAGBseBPb9QrCz7B4k2QgxD/CwIDAQAB"
}

devtools_page.html

<html>
<head></head>
<body><script src="devtools_page_helper.js"></script></body>
</html>

devtools_page_helper.js

function apply_style_sheet_for_current_panel_only( )
    {
    const devtools_custom_css = `.console-view > div[class^="console-warning-" i] { display : none !important ; }` ;

    chrome.devtools.panels.applyStyleSheet( devtools_custom_css ) ;
    }

// run for whatever panel opens by default
apply_style_sheet_for_current_panel_only( ) ;

// fallback if Console panel was not opened by default (most likely due to Elements panel opening first)
chrome.devtools.panels.elements.onSelectionChanged.addListener( apply_style_sheet_for_current_panel_only ) ;

inject_into_devtools.js

// necessary for DevTools in private windows
if  (  /^(?:chrome-|opera-)?devtools:$/gi.test( window.location.protocol ) === true  )
    {
    const devtools_custom_css = `.console-view > div[class^="console-warning-" i] { display : none !important ; }` ;

    const add_css_rules = ( css_rules ) => { ( document.head || document.documentElement ).appendChild( document.createElement("style") ).innerHTML = css_rules ; } ;

    // applies to all panels
    add_css_rules( devtools_custom_css ) ;
    }

You should now have the following file structure:

+ kill_opera_console_warning
|-- manifest.json
|-- devtools_page.html
|-- devtools_page_helper.js
|-- inject_into_devtools.js

ADD EXTENSION TO OPERA

  1. Go to extensions page: Ctrl+Shift+E

    • Enable "Developer mode" (top right)
  2. Install the extension:

    • Click Load unpacked button (top left)

    • Find your "kill_opera_console_warning" folder

    • Go inside the folder, click Select Folder

    • Extension you created should load.

  3. Update extension settings:

    • Find extension: "AAA: Kill Opera Console Warning"

    • Tick the "Allow in Incognito" checkbox

    • Tick the "Allow access to search page results" checkbox


NOW CHANGE ONE SETTING IN DEVTOOLS, RESTART OPERA AND TEST EXTENSION

Extension will be working now but to cover an edge case, you need to update a setting.

  1. Close all instances of DevTools.

  2. Open a new normal window (not an incognito window)

    • Go to "about:blank", open DevTools Ctrl+Shift+I
  3. Open the DevTools settings F1

    • There should be lots of settings with checkboxes
    • Go to "Experiments" tab (top left)
  4. Set Allow extensions to load custom stylesheets to enabled.

    • Probably the first checkbox at the start of the list.
    • Otherwise use filter to search for "stylesheets".
  5. Close everything and restart:

    • Close DevTools settings, close DevTools.
    • Exit Opera, wait 5 seconds and restart Opera.
    • Repeat steps 2-3 to check setting is still enabled.
  6. Test extension is working:

    • On a random webpage, right click "Inspect Element"
    • Switch to console panel to test extension works.
  7. Problem solved for the next few months.


Come back to this question if the extension stops working.

Opera may have updated the classes on the warning messages. An editor will hopefully update the extension in this answer. Should that happen, completely remove the extension. Then follow the instructions again.

不喜欢何必死缠烂打 2025-02-10 15:14:02

执行以下步骤,它们非常简单,您可以删除红色控制台警告。

该答案将允许Opera继续更新(对安全性有益)。

在此问题上添加书签,因为您可能需要多次重新启动浏览器。

此外,在另一个浏览器中打开此问题例如Firefox,Edge或Chrome。

https://stackoverflow.com/questions/72462196/red-warning-message-in-opera-console/72485455

创建一个名为: kill_opera_console_warning

  • 在任何地方都可以的文件夹(最好是使用管理权限安装Opera的同一驱动器)

直接在文件夹中创建以下文件。

subtest.json

{
  "manifest_version"    :  3

, "name"                :  "AAA: Kill Opera Console Warning"
, "description"         :  "..."
, "version"             :  "1.0"

, "devtools_page"       :  "devtools_page.html"

// no permissions required
, "permissions"         :  [ ]

, "content_scripts"     :
    [
        {
          "js"          :  [ "inject_into_devtools.js" ]
        , "matches"     :  [ "<all_urls>" ]
        }
    ]

// Same key as kgejglhpjiefppelpmljglcjbhoiplfn (ChromeVox)
// see : https://stackoverflow.com/questions/17042547/how-to-inject-javascript-into-chrome-devtools-itself/17044405#17044405
, "key"                 :   "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDEGBi/oD7Yl/Y16w3+gee/95/EUpRZ2U6c+8orV5ei+3CRsBsoXI/DPGBauZ3rWQ47aQnfoG00sXigFdJA2NhNK9OgmRA2evnsRRbjYm2BG1twpaLsgQPPus3PyczbDCvhFu8k24wzFyEtxLrfxAGBseBPb9QrCz7B4k2QgxD/CwIDAQAB"
}

devtools_page.html

<html>
<head></head>
<body><script src="devtools_page_helper.js"></script></body>
</html>

devtools_page_helper.js

const devtools_custom_css_G = `.console-view > div[class^="console-warning-" i] { display : none ; }` ;

chrome.devtools.panels.applyStyleSheet( devtools_custom_css_G ) ;

inject_into_into_devtools.js

if  (   /^(?:chrome-|opera-)?devtools:$/gi.test( window.location.protocol ) === true   )
    {
    var red_console_warning__kill_GO = function red_console_warning__kill_TO( run_count_F = 0 )
        {
        if  (   run_count_F > 20   )   {   return ;   }
        
        var devtools_custom_css_selector_T = ".console-view > div[class^='console-warning-' i]" ;
            
        var garbage_TA = document.querySelectorAll( devtools_custom_css_selector_T ) ;
        
        for (   let one_piece_of_garbage_TH  of  garbage_TA   )
            {
            one_piece_of_garbage_TH.style.setProperty( "display" , "none" , "important" ) ;
            }
            
        if  (   garbage_TA.length > 0   )   {   return ;   }
            
        setTimeout( red_console_warning__kill_TO.bind( null , run_count_F+1 ) , 500 ) ;
        } ;

    red_console_warning__kill_GO( 0 ) ;
    }

现在您应该拥有以下以下文件结构:

- kill_opera_console_warning
--- manifest.json
--- devtools_page.html
--- devtools_page_helper.js
--- inject_into_devtools.js

< Strong>现在添加您刚刚创建的扩展名

  1. 打开一个新标签,然后转到:“ Opera:// Extensions”

  2. “开发人员模式”应启用(top_right_corner)

  3. 单击“加载拆箱”按钮(靠近top_left_corner)

  4. 应该出现文件选择器,去查找“ kill_opera_console_warning”文件夹

  5. 进入文件夹中,单击“选择文件夹”

  6. 您的扩展名应该加载。

  7. 遍历您的扩展名并找到“ AAA:杀死歌剧控制台警告”

  8. tick tick“ in In Incognito”复选框

  9. 勾选“允许访问搜索页面结果”复选框


最后,我们更改DevTools中的一个设置,重新启动Opera,然后

在此时对其进行测试,如果您刷新DevTools,将会看起来您创建的扩展名正在工作,并且问题解决了。该扩展名使用两种方法,一种是hack,另一种是更健壮的方法。该黑客将停止工作一天。强大的方法需要更改设置。

  1. 关闭您打开的所有DevTool的实例。

  2. 打开一个新的普通窗口(不是隐身窗口)。

  3. 转到“大约:空白”

  4. 打开DevTools(Ctrl+Shift+I)

  5. 按F1打开适当的设置

  6. 现在应该有大量的设置带有复选框

  7. 单击“实验”选项卡(TOP_LEFT_CORNER附近的“设置”)

  8. tick tick tick的复选框“允许扩展名加载自定义样式表”,以便启用它。可能是列表开始时的第一个复选框。 (如果不是第一个复选框,请使用旁边的搜索框,其中包含“ filter”一词。输入“ stylesheets”。)

  9. 关闭设置并关闭DevTools。退出歌剧以使所有窗户都关闭。

  10. 等待5秒并重新启动歌剧。

  11. 打开一个新窗口

  12. 转到“大约:空白”

  13. 打开DevTools(Ctrl+Shift+I)

  14. 转到控制台选项卡。

  15. 您可能会短暂地看到红色警告半秒,但应该消失。如果您看不到它,恭喜!

  16. 如果您仍然看到警告或回来,则“允许扩展程序加载自定义样式表”可能已经禁用了自己。

  17. 返回到这些说明的步骤6,并确保启用了复选框。如果它已经禁用了自己,那么您将需要再次启用它,并再次浏览第6-19步中的所有说明。它可能需要进行几次尝试(浏览器重新启动)才能粘贴。


仍然无法正常工作

如果复选框在浏览器重置后启用启用,但是您仍会看到红色警告,然后可能会重新开始(删除扩展,删除文件),然后在开始时从开始的所有步骤中重复所有步骤。

如果您确定自己已经遵循了说明,那么您可能必须与它们一起玩一点 。


启用

​编辑这个答案,只需要更改“ DevTools_custom_css”的两个行

。如果您真的想了解涉及每个部分解决方案背后的奇怪原因,以创建扩展。

Do the following steps, they are very easy and you can remove the red console warning.

This answer will allow Opera to continue to be updated (good for security).

Bookmark this question since you may have to restart your browser multiple times.

Also, open this question in another browser eg Firefox, Edge or Chrome.

https://stackoverflow.com/questions/72462196/red-warning-message-in-opera-console/72485455

Create a folder called: kill_opera_console_warning

  • Anywhere is ok (same drive where Opera is installed with admin permissions is best)

Create the following files directly inside the folder.

manifest.json

{
  "manifest_version"    :  3

, "name"                :  "AAA: Kill Opera Console Warning"
, "description"         :  "..."
, "version"             :  "1.0"

, "devtools_page"       :  "devtools_page.html"

// no permissions required
, "permissions"         :  [ ]

, "content_scripts"     :
    [
        {
          "js"          :  [ "inject_into_devtools.js" ]
        , "matches"     :  [ "<all_urls>" ]
        }
    ]

// Same key as kgejglhpjiefppelpmljglcjbhoiplfn (ChromeVox)
// see : https://stackoverflow.com/questions/17042547/how-to-inject-javascript-into-chrome-devtools-itself/17044405#17044405
, "key"                 :   "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDEGBi/oD7Yl/Y16w3+gee/95/EUpRZ2U6c+8orV5ei+3CRsBsoXI/DPGBauZ3rWQ47aQnfoG00sXigFdJA2NhNK9OgmRA2evnsRRbjYm2BG1twpaLsgQPPus3PyczbDCvhFu8k24wzFyEtxLrfxAGBseBPb9QrCz7B4k2QgxD/CwIDAQAB"
}

devtools_page.html

<html>
<head></head>
<body><script src="devtools_page_helper.js"></script></body>
</html>

devtools_page_helper.js

const devtools_custom_css_G = `.console-view > div[class^="console-warning-" i] { display : none ; }` ;

chrome.devtools.panels.applyStyleSheet( devtools_custom_css_G ) ;

inject_into_devtools.js

if  (   /^(?:chrome-|opera-)?devtools:$/gi.test( window.location.protocol ) === true   )
    {
    var red_console_warning__kill_GO = function red_console_warning__kill_TO( run_count_F = 0 )
        {
        if  (   run_count_F > 20   )   {   return ;   }
        
        var devtools_custom_css_selector_T = ".console-view > div[class^='console-warning-' i]" ;
            
        var garbage_TA = document.querySelectorAll( devtools_custom_css_selector_T ) ;
        
        for (   let one_piece_of_garbage_TH  of  garbage_TA   )
            {
            one_piece_of_garbage_TH.style.setProperty( "display" , "none" , "important" ) ;
            }
            
        if  (   garbage_TA.length > 0   )   {   return ;   }
            
        setTimeout( red_console_warning__kill_TO.bind( null , run_count_F+1 ) , 500 ) ;
        } ;

    red_console_warning__kill_GO( 0 ) ;
    }

You should now have the following file structure:

- kill_opera_console_warning
--- manifest.json
--- devtools_page.html
--- devtools_page_helper.js
--- inject_into_devtools.js

NOW ADD THE EXTENSION YOU JUST CREATED TO OPERA

  1. Open a new tab and go to: "opera://extensions"

  2. "Developer mode" should be enabled (top_right_corner)

  3. Click on the "Load unpacked" button (near top_left_corner)

  4. A file picker should appear, go find the "kill_opera_console_warning" folder

  5. Go inside the folder, click "Select Folder"

  6. Your extension should load.

  7. Go through your extensions and find "AAA: Kill Opera Console Warning"

  8. Tick the "Allow in Incognito" checkbox

  9. Tick the "Allow access to search page results" checkbox


LASTLY WE CHANGE ONE SETTING IN DEVTOOLS, RESTART OPERA AND THEN TEST IT

At this point if you refresh the DevTools it will appear the extension you created is working and the problem is solved. This extension uses two methods, one is a hack and the other is more robust. The hack will stop working one day. The robust method requires a setting to be changed.

  1. Close all instances of DevTools that you have open.

  2. Open a new normal window (not an incognito window).

  3. Go to "about:blank"

  4. Open DevTools (Ctrl+Shift+I)

  5. Press F1 to open the PROPER settings

  6. There should now be an enormous amount of settings with checkboxes

  7. Click on the "Experiments" tab (top_left_corner with the word "Settings" nearby)

  8. Tick the checkbox for "Allow extensions to load custom stylesheets" so that it is ENABLED. Probably the first checkbox at the very start of the list. (If it is not the first checkbox then use the search box with the word "Filter" next to it. Type in "stylesheets".)

  9. Close the settings and close the DevTools. Exit Opera so that all windows are closed.

  10. Wait 5 seconds and restart Opera.

  11. Open a new window

  12. Go to "about:blank"

  13. Open DevTools (Ctrl+Shift+I)

  14. Go to Console tab.

  15. You may see the red warning briefly for half a second but it should disappear. If you do not see it, congratulations!

  16. If you still see the warning OR it comes back then "Allow extensions to load custom stylesheets" has probably DISABLED itself.

  17. Go back to step 6 of these instructions and make sure the checkbox is enabled. If it has DISABLED itself, then you will need to ENABLE it again and go through all the instructions from step 6-19 again. It may require a few tries (browser restarts) to get it to stick.


STILL NOT WORKING

If the checkbox stays ENABLED after browser resets but you are still seeing the red warning then maybe start over (remove extension, delete files) then repeat all steps from the beginning in case you made an error.

If you are sure you have followed the instructions exactly then you may have to play around with them a little but they definitely do work so long as the extension is installed properly and you manage to get ""Allow extensions to load custom stylesheets" to stay ENABLED.


ONLY READ PAST HERE IF YOU ARE A STACKOVERFLOW EDITOR.

If at some point in the future this breaks, Opera may have changed the CSS classes on the red console warning elements. In such a case someone should edit this answer, only the two lines that contain "devtools_custom_css" will need to be changed. Everything else in this answer will still work.

EDIT: Removed for brevity, go look through edit history to see commented files if you really want to understand the strange reasons behind each partial solution involved to create extension.

夏雨凉 2025-02-10 15:14:02

降低浏览器是目前唯一的方法。 (编辑:这不是唯一的方法,请阅读@sesame tastelikecheese的答案)您可以等待更新,但谁知道他们是否会解决此问题。因此,如果您可以禁用自动更新,则是降级浏览器的方式:

  1. 下载Opera 86.0.4363.59来自 nore noreferrer”>在这里(Windows Installer)或选择另一个版本此处(的任何版本87.x.xxxx.xx.xx
  2. 转到您的opera安装目录并删除87.x.xxxx.xx文件夹。
  3. 运行安装程序,将安装路径设置为当前的Opera目录。单击“接受并升级”。
  4. 同样,从您的Opera安装目录中,打开86.0.4363.59文件夹(或您刚刚安装的任何版本)。重命名opera_autoupdate可执行到您想要的任何内容。
  5. 打开任务调度程序(控制面板 - &GT; System and Security - &GT;管理工具 - 计划任务/任务调度程序)。禁用Opera计划的自动启动Opera计划的助手自动启动任务。

警告:如果您不够快速执行下一步,则可以在步骤2或步骤3之后自动化,因此可能需要进行几次尝试。或者,您可以在安装旧版本后立即禁用Internet连接。

Downgrading your browser is the only way right now. (Edit: It's not the only way, read the answer by @Sesame Tastelikecheese) You could wait for an update but who knows if they'll even fix this. So if you're okay with disabling auto-updates, here's how you downgrade your browser:

  1. Download Opera 86.0.4363.59 from here (windows installer) or choose another version here (any version before 87.x.xxxx.xx)
  2. Go to your Opera installation directory and delete the 87.x.xxxx.xx folder.
  3. Run the installer, set Install Path to your current Opera directory. Click "Accept and Upgrade".
  4. Again, from your Opera installation directory, open the 86.0.4363.59 folder (or whatever version you've just installed). Rename the opera_autoupdate executable to anything you want.
  5. Open Task Scheduler (Control Panel -> System and Security -> Administrative Tools -> Schedule Tasks/Task Scheduler). Disable Opera scheduled Autoupdate and Opera scheduled assistant Autoupdate tasks.

Warning: Opera may autoupdate after step 2 or step 3 if you don't do the next steps fast enough, so it may take a couple tries. Or you could disable your internet connection right after you install the older version.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文