filelist.ro helper

This addon is intended to improve the filelist.ro website ui

Hvad er filelist.ro helper?

filelist.ro helper er en Chrome-udvidelse udviklet af Zmoky, og dens hovedfunktion er "This addon is intended to improve the filelist.ro website ui".

Udvidelsesskærmbilleder

screenshot

Download filelist.ro helper-udvidelses-CRX-fil

Download filelist.ro helper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This is an extension that improves filelist browsing experience                    

Grundlæggende oplysninger om udvidelsen

Navn filelist.ro helper filelist.ro helper
ID cdpegimclchefkhgkgcfelcbnhionkgp
Officiel URL https://chromewebstore.google.com/detail/filelistro-helper/cdpegimclchefkhgkgcfelcbnhionkgp
Beskrivelse This addon is intended to improve the filelist.ro website ui
Filstørrelse 788 KB
Antal Installationer 23
Nuværende Version 1.4
Senest Opdateret 2020-09-17
Udgivelsesdato 2019-02-02
Bedømmelse 4.75/5 Samlet 4 Bedømmelser
Udvikler Zmoky
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://www.freeprivacypolicy.com/our-privacy-policy
Understøttede Sprog 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"
    ]
}