filelist.ro helper

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

Vad är filelist.ro helper?

filelist.ro helper är en Chrome-tillägg utvecklad av Zmoky, och dess huvudfunktion är "This addon is intended to improve the filelist.ro website ui".

Tilläggsskärmbilder

screenshot

Ladda ner filelist.ro helper-förlängningens CRX-fil

Ladda ner filelist.ro helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This is an extension that improves filelist browsing experience                    

Grundläggande Information om Tillägg

Namn filelist.ro helper filelist.ro helper
ID cdpegimclchefkhgkgcfelcbnhionkgp
Officiell webbadress https://chromewebstore.google.com/detail/filelistro-helper/cdpegimclchefkhgkgcfelcbnhionkgp
Beskrivning This addon is intended to improve the filelist.ro website ui
Filstorlek 788 KB
Antal Installationer 23
Aktuell Version 1.4
Senast Uppdaterad 2020-09-17
Publiceringsdatum 2019-02-02
Betyg 4.75/5 Totalt 4 Betyg
Utvecklare Zmoky
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://www.freeprivacypolicy.com/our-privacy-policy
Stödda Språk 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"
    ]
}