Autoplay No More
Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.
什么是Autoplay No More?
Autoplay No More是由https://www.kiboke-studio.hr开发的Chrome扩展程序,该扩展的主要功能是“Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.”。
扩展截图
下载Autoplay No More扩展crx文件
下载Autoplay No More扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.
扩展基本信息
名称 | Autoplay No More |
ID | obiogedpmdnfaldjdjmnbpmhjjfnghnj |
官方URL | https://chromewebstore.google.com/detail/autoplay-no-more/obiogedpmdnfaldjdjmnbpmhjjfnghnj |
简介 | Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo. |
文件大小 | 13.88 KB |
安装次数 | 1,051 |
当前版本 | 0.4.2 |
更新时间 | 2023-08-21 |
上架时间 | 2020-04-16 |
评分 | 3.00/5 共8次评分 |
开发者 | https://www.kiboke-studio.hr |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.kiboke-studio.hr/browser-extensions/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Autoplay No More", "description": "Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.", "version": "0.4.2", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "96": "icons\/96.png", "128": "icons\/128.png" }, "author": "Daniel Kladnik", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "css": [ "data\/youtube.css" ], "js": [ "data\/youtube.js" ] }, { "matches": [ "*:\/\/*.vimeo.com\/*" ], "css": [ "data\/vimeo.css" ], "js": [ "data\/vimeo.js" ] }, { "matches": [ "*:\/\/*.ted.com\/*" ], "js": [ "data\/ted.js" ] }, { "matches": [ "*:\/\/*.bing.com\/videos\/*" ], "js": [ "data\/bing.js" ] } ] } |