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 |
| 官方網址 | 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"
]
} | |