V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  cpalead  ›  全部回复第 5 页 / 共 5 页
回复总数  88
1  2  3  4  5  
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  5  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   864 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 12ms · UTC 21:27 · PVG 05:27 · LAX 13:27 · JFK 16:27
Developed with CodeLauncher
♥ Do have faith in what you're doing.