Blazor Edge New Tab

A new tab page for Microsoft Edge (and all Chromium Browsers) made using Blazor Web Assembly

什么是Blazor Edge New Tab?

Blazor Edge New Tab是由dragnilar开发的Chrome扩展程序,该扩展的主要功能是“A new tab page for Microsoft Edge (and all Chromium Browsers) made using Blazor Web Assembly”。

扩展截图

screenshot
screenshot
screenshot

下载Blazor Edge New Tab扩展crx文件

下载Blazor Edge New Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A new tab page extension for Microsoft Edge / Chrome made using Blazor Web Assembly. Features Bing Wallpaper of the day and previous 5-6 day archive as well as the ability to have almost an unlimited number of quick links, which are based off of a bookmark folder that you can specify in the settings. Designed for portability (assuming you export or synchronize your bookmarks).

Updates (v 1.5):

- Updated extension to Dot Net 7, which improves performance / loading speed
- Updated Bootstrap to latest version
- Updated to manifest v3                    

扩展基本信息

名称 Blazor Edge New Tab Blazor Edge New Tab
ID bdcfngldhocoffghnlmhibpifmoakiec
官方URL https://chromewebstore.google.com/detail/blazor-edge-new-tab/bdcfngldhocoffghnlmhibpifmoakiec
简介 A new tab page for Microsoft Edge (and all Chromium Browsers) made using Blazor Web Assembly
文件大小 4.98 MB
安装次数 22
当前版本 1.5
更新时间 2023-02-24
上架时间 2021-12-02
开发者 dragnilar
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/dragnilar/EdgeExtensionsBlazor
帮助页面URL https://github.com/dragnilar/EdgeExtensionsBlazor
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blazor Edge New Tab",
    "description": "A new tab page for Microsoft Edge (and all Chromium Browsers) made using Blazor Web Assembly",
    "version": "1.5",
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "framework\/*",
                "BrowserExtensionScripts\/*",
                "content\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "permissions": [
        "search",
        "storage",
        "bookmarks",
        "favicon",
        "downloads"
    ],
    "icons": {
        "128": "icons\/BlazorNewTab.png",
        "52": "icons\/BlazorNewTab.png",
        "28": "icons\/BlazorNewTab.png"
    }
}