Framer Checker

Check if a website was made using Framer.com

Cos'è Framer Checker?

Framer Checker è un'estensione di Chrome sviluppata da Lenderson Macedo, e la sua funzione principale è "Check if a website was made using Framer.com".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Framer Checker

Scarica i file di estensione Framer Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Need to check if a website was made with Framer?  With Framer Checker, you can automatically verifies if a website was created using this popular design tool. With just a few clicks, you can quickly check if a site was built with Framer. As a designer, it's a great way to see how other professionals are using this tool, and for anyone curious about the tools used to build their favorite websites, Framer Checker has you covered.                    

Informazioni di Base sull'Estensione

Nome Framer Checker Framer Checker
ID jhjmopmegnfaboaidbggelokaadjjgif
URL Ufficiale https://chromewebstore.google.com/detail/framer-checker/jhjmopmegnfaboaidbggelokaadjjgif
Descrizione Check if a website was made using Framer.com
Dimensione del File 55.02 KB
Conteggio Installazioni 813
Versione Corrente 1.0.2
Ultimo Aggiornamento 2022-12-16
Data di Pubblicazione 2022-12-15
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Lenderson Macedo
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://chrome.framer.website
URL della Pagina di Aiuto https://chrome.framer.website/bugs-report
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Framer Checker",
    "description": "Check if a website was made using Framer.com",
    "version": "1.0.2",
    "author": "Lenderson Macedo",
    "permissions": [
        "tabs"
    ],
    "action": {
        "default_title": "Framer Checker",
        "default_popup": "popups\/disabled.html",
        "default_icon": {
            "16": "assets\/16-disabled.png",
            "24": "assets\/24-disabled.png",
            "32": "assets\/32-disabled.png",
            "48": "assets\/48-disabled.png",
            "128": "assets\/128-disabled.png"
        }
    },
    "background": {
        "service_worker": "background\/index.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "content\/index.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "assets\/16-active.png",
        "24": "assets\/24-active.png",
        "32": "assets\/32-active.png",
        "48": "assets\/48-active.png",
        "128": "assets\/128-active.png"
    }
}