Framer Checker

Check if a website was made using Framer.com

Co to jest Framer Checker?

Framer Checker to rozszerzenie Chrome opracowane przez Lenderson Macedo, a jego główną funkcją jest „Check if a website was made using Framer.com”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Framer Checker

Pobierz pliki rozszerzeń Framer Checker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Framer Checker Framer Checker
ID jhjmopmegnfaboaidbggelokaadjjgif
Oficjalny URL https://chromewebstore.google.com/detail/framer-checker/jhjmopmegnfaboaidbggelokaadjjgif
Opis Check if a website was made using Framer.com
Rozmiar pliku 55.02 KB
Liczba instalacji 813
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2022-12-16
Data Publikacji 2022-12-15
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Lenderson Macedo
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://chrome.framer.website
Adres URL Strony Pomocy https://chrome.framer.website/bugs-report
Obsługiwane Języki 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"
    }
}