分享一些小tips

谷歌浏览器破解

google拓展商店中hackbar地址
https://chrome.google.com/webstore/detail/djmoeoifnlhjolebkehmpaocfnipknbh

修改源码达到破解的目的

1、打开Chrome插件列表,查看Hackbar的插件ID:djmoeo…… ,Everything中直接搜索该ID即可找到HackBar的路径

2、用Notepad++打开这个文件夹下的 \theme\js\hackbar-panel.js 文件。

3、搜索chrome.storage.local.get字符串并将以下代码用/**/给注释掉

chrome.storage.local.get(['license'], function (result) {
    const license = result.license;
    if (license) {
            //check internet
            fetch("https://google.com")
            .then(function (response) {
                    // check licese
                    fetch(license_server + "/" + license)
                    .then(function (response) {
                        return response.json();
                    })
                    .then(function (data) {
                        const pong = data.pong;
                        if (pong === false) {
                            disable_hackbar(data.message);
                        }
                    }).catch(error => {
                        disable_hackbar();
                    });
                })
            .then(function (data) {
            }).catch(error => {
            });
        } else {
            disable_hackbar();
        }
    });

或者hackbar-panel.js 的第35、40、43行左右的disable_hackbar(); 注释掉,同时添加一行init(); 然后Ctrl+S保存文件。

4、再次打开Google的拓展程序,发现google提示拓展程序已损坏,此时需要重新打包。
image

选择修改好文件夹2.3.1_0重新打包,将生成的crx文件的后缀为rar,创建一个新的文件夹并解压rar文件到该文件夹
image

5.google浏览器加载刚才解压的文件夹即可使用hackbar了
image

Windows系统右键创建md文件

在创建markdown文档时需要先创建一个txt文件,再修改文件后缀为md,步骤相对繁琐。现在可以通过修改注册表的方式,右键直接创建md文档。
创建如下文件,修改后缀为.reg,运行即可。

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\.md]
@="Typora.md"
"Content Type"="text/markdown"
"PerceivedType"="text"

[HKEY_CLASSES_ROOT\.md\ShellNew]
"NullFile"=""

Windows修改鼠标样式

Windows系统的鼠标样式百年不变早就看腻了,分享一个自己喜欢的鼠标样式
https://gitee.com/ersuan/plugin/blob/master/鼠标指针.zip
预览图片

下载工具分享

IDM破解版
https://www.ozabc.com/it/503511.html
XDM
https://xtremedownloadmanager.com/

posted @ 2021-11-07 22:25  newbe3three  阅读(99)  评论(1编辑  收藏  举报