1337 enhancer
A zero dependency chrome extension for enhancing your user experience on 1337x torrent sites
什么是1337 enhancer?
1337 enhancer是由Rishav Rungta开发的Chrome扩展程序,该扩展的主要功能是“A zero dependency chrome extension for enhancing your user experience on 1337x torrent sites”。
扩展截图
下载1337 enhancer扩展crx文件
下载1337 enhancer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension enhances the over all user experience in 1337x sites. Features: 1. Allows sorting the table based on Seeds, Leech, Size and uploader. 2. Allows batch copying magnet links. 3. Adds a new column to the table with the magnet link to the torrent. 4. Adds the screens from the torrent description to a popup on hovering. 5. Many more...
扩展基本信息
名称 | 1337 enhancer |
ID | kifnljdeoikhjhjbkkjhoaehfbaldbmb |
官方URL | https://chromewebstore.google.com/detail/1337-enhancer/kifnljdeoikhjhjbkkjhoaehfbaldbmb |
简介 | A zero dependency chrome extension for enhancing your user experience on 1337x torrent sites |
文件大小 | 18.8 KB |
安装次数 | 914 |
当前版本 | 2.6.1 |
更新时间 | 2020-12-19 |
上架时间 | 2020-12-15 |
评分 | 4.14/5 共7次评分 |
开发者 | Rishav Rungta |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/rishav394/1337-enhancer |
帮助页面URL | https://github.com/rishav394/1337-enhancer/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "1337 enhancer", "version": "2.6.1", "description": "A zero dependency chrome extension for enhancing your user experience on 1337x torrent sites", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "options_ui": { "page": "dist\/options.html", "open_in_tab": false }, "permissions": [ "contextMenus", "storage" ], "web_accessible_resources": [ "dist\/*.jpg", "dist\/*.svg" ], "content_scripts": [ { "matches": [ "*:\/\/1337.root.yt\/*", "*:\/\/1337x.to\/*", "*:\/\/1337x.st\/*", "*:\/\/x1337x.ws\/*", "*:\/\/x1337x.eu\/*", "*:\/\/x1337x.se\/*", "*:\/\/1337x.is\/*", "*:\/\/1337x.gd\/*" ], "js": [ "dist\/content.js" ], "css": [ "dist\/content.css" ], "all_frames": true } ], "background": { "persistent": false, "scripts": [ "dist\/background.js" ], "css": [ "dist\/content.css" ] } } |