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"입니다.

확장 프로그램 스크린샷

screenshot

filelist.ro helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is an extension that improves filelist browsing experience                    

확장 프로그램 기본 정보

이름 filelist.ro helper filelist.ro helper
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"
    ]
}