Framer Code Generator

Framer snippets included for fast prototyping.

Apa itu Framer Code Generator?

Framer Code Generator adalah ekstensi Chrome yang dikembangkan oleh ruucm.a, dan fitur utamanya adalah "Framer snippets included for fast prototyping.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Framer Code Generator

Unduh file ekstensi Framer Code Generator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        A code generator for helping fast prototyping on Framer Web.

It includes useful snippets for prototyping on Framer Web.

* Framer Web - https://framer.com/projects                    

Informasi Dasar Ekstensi

Nama Framer Code Generator Framer Code Generator
ID lijpejhigjbpnfgonmnknknaoneddjei
URL Resmi https://chromewebstore.google.com/detail/framer-code-generator/lijpejhigjbpnfgonmnknknaoneddjei
Deskripsi Framer snippets included for fast prototyping.
Ukuran File 243 KB
Jumlah Instalasi 276
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2021-01-04
Tanggal Publikasi 2021-01-04
Pengembang ruucm.a
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Framer snippets included for fast prototyping.",
    "version": "0.1.0",
    "name": "Framer Code Generator",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "permissions": [
        "clipboardWrite",
        "clipboardRead",
        "contextMenus"
    ],
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Toggle feature foo"
        },
        "toggle-feature-foo2": {
            "suggested_key": {
                "default": "Alt+Shift+Y",
                "mac": "Alt+Shift+Y"
            },
            "description": "Toggle feature foo2"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+G",
                "windows": "Alt+Shift+G",
                "mac": "Alt+Shift+G"
            }
        },
        "NO-suggested-key": {
            "description": "user must specify shortcut keys for this from the extensions page"
        }
    },
    "icons": {
        "128": "icon-128.png"
    },
    "web_accessible_resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}