filelist.ro helper

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

Was ist filelist.ro helper?

filelist.ro helper ist eine Chrome-Erweiterung, die von Zmoky entwickelt wurde, und ihr Hauptmerkmal ist "This addon is intended to improve the filelist.ro website ui".

Erweiterungsscreenshots

screenshot

filelist.ro helper-Erweiterungs-CRX-Datei herunterladen

Laden Sie filelist.ro helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This is an extension that improves filelist browsing experience                    

Grundlegende Informationen zur Erweiterung

Name filelist.ro helper filelist.ro helper
ID cdpegimclchefkhgkgcfelcbnhionkgp
Offizielle URL https://chromewebstore.google.com/detail/filelistro-helper/cdpegimclchefkhgkgcfelcbnhionkgp
Beschreibung This addon is intended to improve the filelist.ro website ui
Dateigröße 788 KB
Installationsanzahl 23
Aktuelle Version 1.4
Letztes Update 2020-09-17
Veröffentlichungsdatum 2019-02-02
Bewertung 4.75/5 Insgesamt 4 Bewertungen
Entwickler Zmoky
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.freeprivacypolicy.com/our-privacy-policy
Unterstützte Sprachen 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"
    ]
}