V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
V2EX  ›  cpalead  ›  全部回复第 24 页 / 共 24 页
回复总数  475
1 ... 15  16  17  18  19  20  21  22  23  24  
2022 年 7 月 31 日
回复了 cpalead 创建的主题 Android android 上 telnet 的工具
@lx0758 termius 非常好用,感谢,只是 xapk 我装不上,只能装老版本的 apk
2022 年 7 月 30 日
回复了 cpalead 创建的主题 Android android 上 telnet 的工具
@ysc3839 一样乱码
2022 年 7 月 30 日
回复了 cpalead 创建的主题 Android android 上 telnet 的工具
@ltkun termux 登录还是乱码
nat
2022 年 7 月 5 日
回复了 cpalead 创建的主题 Android 安卓版 edge 拦截广告无效
我把能拦截广告的小米手机的 edge 卸载重装,也不能拦截了,哈哈,厉害了我的 edge
2022 年 7 月 5 日
回复了 cpalead 创建的主题 Android 安卓版 edge 拦截广告无效
@jim9606 真无语,我两个小米手机,安装同一个版本,同样的设置,一个拦截广告,一个不拦截
2022 年 7 月 4 日
回复了 cpalead 创建的主题 Android 安卓版 edge 拦截广告无效
@butbut 我先下一个 edge 国际版试试
2022 年 7 月 4 日
回复了 cpalead 创建的主题 Android 安卓版 edge 拦截广告无效
@butbut 我下的国内版的 firefox ,找不到装 ublock 的地方,太恶心了
2022 年 7 月 4 日
回复了 cpalead 创建的主题 Android 安卓版 edge 拦截广告无效
@SawyerGuo 支付密码又不保存
2022 年 7 月 4 日
回复了 cpalead 创建的主题 Android 安卓版 edge 拦截广告无效
@LZSZ 我把 chrome 的密码同步到 edge 上了,用 360 肯定不放心
2022 年 6 月 24 日
回复了 cpalead 创建的主题 Linux 虚拟机共享网络,是不是端口转发就可以了?
@pagxir 我试了,改了 0.0.0.0 的端口还是不行,算了
2022 年 6 月 24 日
回复了 cpalead 创建的主题 Linux 虚拟机共享网络,是不是端口转发就可以了?
@pagxir 的确是这样的,本地的那个翻墙软件用的是 19180,我换个 0.0.0.0 的试试
@v2tudnew 我已经( https://greasyfork.org/zh-CN/scripts/439848 )把 bug 修复了
大家直接把我的脚本导入就行了


// ==UserScript==
// @name RedirectChineseWikipedia
// @name:zh-CN 中文维基重定向
// @namespace https://zh.wikipedia.org
// @include https://zh.wikipedia.org/wiki/*
// @include https://zh.wikipedia.org/zh/*
// @include https://zh.wikipedia.org/zh-hk/*
// @include https://zh.wikipedia.org/zh-mo/*
// @include https://zh.wikipedia.org/zh-tw/*
// @include https://zh.wikipedia.org/zh-my/*
// @include https://zh.wikipedia.org/zh-sg/*
// @include https://zh.wikipedia.org/zh-hans/*
// @include https://zh.m.wikipedia.org/wiki/*
// @include https://zh.m.wikipedia.org/zh/*
// @include https://zh.m.wikipedia.org/zh-hk/*
// @include https://zh.m.wikipedia.org/zh-mo/*
// @include https://zh.m.wikipedia.org/zh-tw/*
// @include https://zh.m.wikipedia.org/zh-my/*
// @include https://zh.m.wikipedia.org/zh-sg/*
// @include https://zh.m.wikipedia.org/zh-cn/*
// @include https://zh.m.wikipedia.org/zh-hans/*
// @version 0.3
// @description Force redirect Chinese Wikipedia from other locales to zh-cn (and also from mobile ver to desktop ver)
// @description:zh-CN 重定向中文维基的其他版本(繁体中文等)到简体中文,同时重定向手机端页面到桌面端页面。
// @author aisuneko
// @icon https://zh.wikipedia.org/favicon.ico
// @license MIT
// @grant none
// ==/UserScript==

(function() {
'use strict';
let variants = ["wiki/", "zh/", "zh-hk/", "zh-mo/", "zh-tw/","zh-my/", "zh-sg/", "zh-hans/"];
let url = window.location.href;
let desturl = url;
let header = "zh.wikipedia.org/";
let mobile_header = "zh.m.wikipedia.org/";
if(url.search(mobile_header) != -1) desturl = url.replace(mobile_header, header);

let target = header + "zh-cn/";
for(let i = 0; i < variants.length; i++){
let searchstr = header + variants[i];
if(desturl.search(searchstr) != -1){
desturl = desturl.replace(searchstr, target);
break;
}
}
window.location.replace(desturl);
})();
@v2tudnew 试了,不好用,m 站不转发
2022 年 6 月 20 日
回复了 cpalead 创建的主题 Linux 虚拟机共享网络,是不是端口转发就可以了?
@AoEiuV020CN 我在虚拟机里面开了好几个代理软件,那些代理软件都设置了局域网共享网络和端口转发,我的主机 ubuntu 是可以用虚拟机里面的翻墙软件的,但是唯独这次用 netsh 的转发,ubuntu 访问不了
1 ... 15  16  17  18  19  20  21  22  23  24  
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   958 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 15ms · UTC 21:55 · PVG 05:55 · LAX 14:55 · JFK 17:55
♥ Do have faith in what you're doing.