Skip to content

Instantly share code, notes, and snippets.

@Last-Order
Created October 11, 2019 11:45
Show Gist options
  • Star 91 You must be signed in to star a gist
  • Fork 13 You must be signed in to fork a gist
  • Save Last-Order/5a1c70686bc0c130fe3fbdcbdb1bf22a to your computer and use it in GitHub Desktop.
Save Last-Order/5a1c70686bc0c130fe3fbdcbdb1bf22a to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Abema 区域限制
// @version 1.0.0
// @run-at document-end
// @namespace Violentmonkey Scripts
// @match https://abema.tv/*
// @grant none
// ==/UserScript==
Object.defineProperty(__CLIENT_REGION__, 'isAllowed', {
get: () => true
});
Object.defineProperty(__CLIENT_REGION__, 'status', {
get: () => false
});
@johnsmith8736
Copy link

这个方法本来是为了解锁chatgpt的,用这个方法也可以解锁abematv 我也不知道为什么

@johnsmith8736
Copy link

可以 telegram 关注 https://t.me/generatewarpplusbot 获取 license

@johnsmith8736
Copy link

大佬 想问 那现在怎么上abema啊?有啥解决方法不? 跪求!买了一场周六的线上演唱会,哭唧唧~

https://twitter.com/cyngn87/status/1670683261994160128 利用root过的手机,装上warp+,vpn hotspot,打开热点以后,利用vpn hotspot成功在电脑上观看abematv了
photo_2023-06-19_15-15-31
photo_2023-06-19_15-15-45

@HenryCode96
Copy link

现在挂着日本的节点都直接跳转到不可访问节点,控制台上报错__CLIENT_REGION__ is not defined
如果不适用VPN节点的话,海外的IP又无法访问内容数据,会显示为ERR_BLOCKED_BY_CLIENT
看到网页代码中主要是这一段控制地区信息
window.__CLIENT_REGION__ = {"timezone": "Europe/Berlin", "divisionCode": 1,"isoCountryCode": "DE","cdnURL": "https://ds-glb-linear-abematv.akamaized.net/region","isAllowed": true,"status": true};
不知有无办法直接针对timezoneisoCountryCode两个属性进行劫持注入,从而实现直接通过现有地区信息判断的逻辑。
能力有限,对于JS了解甚少,还请dalao们抽空看下这个思路可行性。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment