filelist.ro helper

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

Τι είναι το filelist.ro helper;

Το filelist.ro helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Zmoky, και η κύρια λειτουργία του είναι "This addon is intended to improve the filelist.ro website ui".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης filelist.ro helper

Λήψη αρχείων επέκτασης filelist.ro helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    ]
}