Framer Code Generator

Framer snippets included for fast prototyping.

What is Framer Code Generator?

Framer Code Generator is a Chrome extension developed by ruucm.a, and its main feature is "Framer snippets included for fast prototyping.".

Extension Screenshots

screenshot

Download Framer Code Generator Extension CRX File

Download Framer Code Generator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Framer Code Generator Framer Code Generator
ID lijpejhigjbpnfgonmnknknaoneddjei
Official URL https://chromewebstore.google.com/detail/framer-code-generator/lijpejhigjbpnfgonmnknknaoneddjei
Description Framer snippets included for fast prototyping.
File Size 243 KB
Installation Count 276
Current Version 0.1.0
Last Updated 2021-01-04
Publish Date 2021-01-04
Developer ruucm.a
Email [email protected]
Payment Type free
Supported Languages 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'"
}