V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  cpalead  ›  全部回复第 4 页 / 共 4 页
回复总数  75
1  2  3  4  
2022-07-31 09:18:08 +08:00
回复了 cpalead 创建的主题 Android android 上 telnet 的工具
@lx0758 termius 非常好用,感谢,只是 xapk 我装不上,只能装老版本的 apk
2022-07-30 22:10:16 +08:00
回复了 cpalead 创建的主题 Android android 上 telnet 的工具
@ysc3839 一样乱码
2022-07-30 22:06:22 +08:00
回复了 cpalead 创建的主题 Android android 上 telnet 的工具
@ltkun termux 登录还是乱码
nat
2022-07-05 15:23:23 +08:00
回复了 cpalead 创建的主题 Android 安卓版 edge 拦截广告无效
我把能拦截广告的小米手机的 edge 卸载重装,也不能拦截了,哈哈,厉害了我的 edge
2022-07-05 15:02:23 +08:00
回复了 cpalead 创建的主题 Android 安卓版 edge 拦截广告无效
@jim9606 真无语,我两个小米手机,安装同一个版本,同样的设置,一个拦截广告,一个不拦截
2022-07-04 18:06:30 +08:00
回复了 cpalead 创建的主题 Android 安卓版 edge 拦截广告无效
@butbut 我先下一个 edge 国际版试试
2022-07-04 18:05:21 +08:00
回复了 cpalead 创建的主题 Android 安卓版 edge 拦截广告无效
@butbut 我下的国内版的 firefox ,找不到装 ublock 的地方,太恶心了
2022-07-04 17:52:04 +08:00
回复了 cpalead 创建的主题 Android 安卓版 edge 拦截广告无效
@SawyerGuo 支付密码又不保存
2022-07-04 16:51:14 +08:00
回复了 cpalead 创建的主题 Android 安卓版 edge 拦截广告无效
@LZSZ 我把 chrome 的密码同步到 edge 上了,用 360 肯定不放心
2022-06-24 20:52:55 +08:00
回复了 cpalead 创建的主题 Linux 虚拟机共享网络,是不是端口转发就可以了?
@pagxir 我试了,改了 0.0.0.0 的端口还是不行,算了
2022-06-24 20:45:27 +08:00
回复了 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-06-20 20:32:07 +08:00
回复了 cpalead 创建的主题 Linux 虚拟机共享网络,是不是端口转发就可以了?
@AoEiuV020CN 我在虚拟机里面开了好几个代理软件,那些代理软件都设置了局域网共享网络和端口转发,我的主机 ubuntu 是可以用虚拟机里面的翻墙软件的,但是唯独这次用 netsh 的转发,ubuntu 访问不了
1  2  3  4  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1092 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 18ms · UTC 17:57 · PVG 01:57 · LAX 10:57 · JFK 13:57
Developed with CodeLauncher
♥ Do have faith in what you're doing.