Auto Iframes Remover

This extension will automatically remove all iframes on all websites when the page loads.

Τι είναι το Auto Iframes Remover;

Το Auto Iframes Remover είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://wildwestwiki.com, και η κύρια λειτουργία του είναι "This extension will automatically remove all iframes on all websites when the page loads.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Auto Iframes Remover

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

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

                        Want to remove all iframes on a website? Auto Iframes Remover automatically finds and removes or stops all iframes from loading on websites. When active, the extension automatically starts removing iframes the moment you start loading a website and continues to remove all iframes including those that may spring up later after the site loads.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Auto Iframes Remover Auto Iframes Remover
ID fhenkighldilmobhdgopkhejbaainnfm
Επίσημο URL https://chromewebstore.google.com/detail/auto-iframes-remover/fhenkighldilmobhdgopkhejbaainnfm
Περιγραφή This extension will automatically remove all iframes on all websites when the page loads.
Μέγεθος Αρχείου 18.3 KB
Αριθμός Εγκαταστάσεων 369
Τρέχουσα Έκδοση 3.6.9
Τελευταία Ενημέρωση 2023-08-28
Ημερομηνία Δημοσίευσης 2021-03-04
Αξιολόγηση 4.25/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://wildwestwiki.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://wildwestwiki.com/childsPlayExtensions/auto-iframes-remover
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "3.6.9",
    "manifest_version": 3,
    "offline_enabled": true,
    "short_name": "AiR",
    "homepage_url": "https:\/\/wildwestwiki.com\/wiki\/1090025\/auto-iframes-remover-air-chrome-extension",
    "name": "Auto Iframes Remover",
    "description": "This extension will automatically remove all iframes on all websites when the page loads.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "badge": {
            "display": "block",
            "text": "0"
        },
        "default_popup": "options.html",
        "default_title": "Auto Iframes Remover V3 series"
    },
    "options_page": "options.html",
    "icons": {
        "48": "airsmall.png",
        "128": "air.png"
    }
}