「MICROSOFT-EDGE」- 微软基于 Chromium 开源项目及其他开源软件开发的网页浏览器

认识

Microsoft Edge,跨平台的 Microsoft 浏览器,能够在多个操作系统平台中运行,将代替 IE 浏览器。

组成

WIP

构建

on Linux with .deb

Microsoft Edge

# 第一步、下载
# https://www.microsoft.com/en-us/edge?exp=e523&form=MA13FJ
wget https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.19-1_amd64.deb

# 第二步、安装
dpkg -i microsoft-edge-beta_91.0.864.19-1_amd64.deb

# 第三步、运行
/usr/bin/microsoft-edge-stable

on Linux with Flatpak

# 05/09/2024 通过 Flatpak 安装

https://flathub.org/apps/com.microsoft.Edge
flatpak install flathub com.microsoft.Edge
flatpak run com.microsoft.Edge

性质

Split Screen

Multitask with Split Screen Browsing

To try Split screen, select Split screen in the tool bar or select and hold (or right-click) a link then select Open link in split screen.

To exit Split screen, select Close split screen (X) at the top right corner of the active screen.

应用

该笔记将记录:与 Microsoft Edge 的安装方法,以及常见设置。

常用配置

Settings / show favourites bar

Q:如何关闭选中文本出现的菜单?
A:其在带 Hide menu ⇒ Hide menu always
R:Enable or Disable Mini Menu on Text Selection in Microsoft Edge Tutorial | Windows 11 Forum

Q:清除 DNS 缓存?
A:edge://net-internals/#dns

Q:针对不安全的站点,如何保存密码?
A:在 Settings 中,我们手动创建密码即可。
R:Edge doesn’t prompt to save passwords on SOME websites due to how they’re implemented

Q:强制修改页面字体?
A:当测试几个插件后,部分存在问题无法正常使用。最终,我们使用 TamperMonkey 修改。
R:GitHub Gist/rayanfer32/keep-mono-font.js

// ==UserScript==
// @name         Force Monospace Font
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://192.168.110.222:8006/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.body.style.fontFamily = "monospace"

    const css = `* {
    font-family: Consolas;
}
`
    let INJECTED_CSS = document.createElement('style');
    INJECTED_CSS.textContent = css
    document.head.append(INJECTED_CSS)

})();

禁用右侧搜索

某次以外设置,导致我们 Ctrl+F 搜索框出现在侧栏中。每次进行查找时,都会导致页面变小。而且,其大多数功能并非我们需要的。

我们希望将搜索框恢复到顶部悬浮状态。

Open in Find bar,能够将右侧栏中的搜索功能恢复为悬浮状态。
Open in sidebar,能够将悬浮的查找框放到右侧栏中。

禁用 HTTP 到 HTTPS 跳转

How do I disable automatic HTTPS redirection as a global policy in Edge?

Microsoft Edge Version 135.0.3179.98 (Official build) (64-bit)

edge://flags/#edge-automatic-https 并 Disable 该选项

  • 05/09/2025 经过测试并未生效。

edge://net-internals/#hsts 在 Delete domain security policies 中,删除相关域名

  • 05/09/2025 经过测试,生效。

改进

常见问题处理

参考

WIP