filelist.ro helper
This addon is intended to improve the filelist.ro website ui
什么是filelist.ro helper?
filelist.ro helper是由Zmoky开发的Chrome扩展程序,该扩展的主要功能是“This addon is intended to improve the filelist.ro website ui”。
扩展截图
下载filelist.ro helper扩展crx文件
下载filelist.ro helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is an extension that improves filelist browsing experience 扩展基本信息
| 名称 | |
| ID | cdpegimclchefkhgkgcfelcbnhionkgp |
| 官方URL | https://chromewebstore.google.com/detail/filelistro-helper/cdpegimclchefkhgkgcfelcbnhionkgp |
| 简介 | This addon is intended to improve the filelist.ro website ui |
| 文件大小 | 788 KB |
| 安装次数 | 23 |
| 当前版本 | 1.4 |
| 更新时间 | 2020-09-17 |
| 上架时间 | 2019-02-02 |
| 评分 | 4.75/5 共4次评分 |
| 开发者 | Zmoky |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://www.freeprivacypolicy.com/our-privacy-policy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "filelist.ro helper",
"version": "1.4",
"description": "This addon is intended to improve the filelist.ro website ui",
"permissions": [
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/logo-filelist-16.png",
"32": "images\/logo-filelist-32.png",
"48": "images\/logo-filelist-48.png",
"128": "images\/logo-filelist-128.png"
}
},
"icons": {
"16": "images\/logo-filelist-16.png",
"32": "images\/logo-filelist-32.png",
"48": "images\/logo-filelist-48.png",
"128": "images\/logo-filelist-128.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/filelist.io\/browse.php*",
"https:\/\/filelist.io\/internal.php*"
],
"css": [],
"js": [
"jquery.js",
"content.js"
]
}
],
"web_accessible_resources": [
"styles.css"
]
} | |