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 |
| Eメール | [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"
]
} | |