JavSS

为 javdb、javbus 添加视频缩略图,菜单栏可直接按番号查询

As of 19. 07. 2025. See the latest version.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Autor
vortexecho
Ocene
0 0 0
Verzija
1.3.1
Napravljeno
06. 07. 2025
Ažurirano
19. 07. 2025
Size
19,4 КБ
Licenca
MIT
Važi za

JavSS

  • javdb movie-list 宽度 100%
  • javdb movie-list 方向键滚动与翻页
  • 导航栏和扩展菜单栏可直接按番号查找缩略图

// @connect * 是因为要跨域查找图片地址,需要允许全部

其他网站可添加到 @match 使用菜单栏搜索

配置

DEBUG_MODE = true 时会测试所有图源以及耗时,过程输出在开发者工具控制台

SITE_CONFIGS 为各种 CSS 选择器,番号、跳转链接插入位置、图片插入位置等选择器

IMAGE_SOURCES 为缩略图源,会按顺序查找并显示第一个找到的缩略图,可以按照耗时统计手动排序列表中元素,有其他图源也可以反馈添加

3xplanet 图源有验证问题,一段时间后需要点击图片跳转一次

javstore old 图源在搜索旧番号时使用,需要的话可以取消注释

补充

localStorage 存储按源(Origin)隔离,不同的网站无法访问到相同番号的缓存地址

如果有需要所有网站访问同一缓存,可以在 // ==UserScript== 里面添加:

// @grant        GM_getValue
// @grant        GM_setValue
// @grant        GM_deleteValue

并替换脚本中的三处:

  • localStorage.getItem --> GM_getValue
  • localStorage.setItem --> GM_setValue
  • localStorage.removeItem --> GM_deleteValue