Slashy - Custom commands for Notion

Record, draw, and create custom commands without leaving Notion.

Slashy - Custom commands for Notion란 무엇입니까?

Slashy - Custom commands for Notion은(는) https://slashy.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Record, draw, and create custom commands without leaving Notion."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Slashy - Custom commands for Notion 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Slashy is a Chrome extension that lets you create custom commands for Notion. Make camera and audio recordings, draw, create reusable components and more without leaving Notion.

FEATURES
⚡️ Create your own Notion custom commands
📹 Make video and audio recordings without leaving Notion with /record
🖌️ Make drawings and annotations for your Notion page with /draw
✍️ Easily make commands for reusable blocks and content
🤖 Develop your own plugins with the Slashy SDK
🗄 Manage and edit your commands easily through the Notion sidebar
⚙️ Toggle command visibility and other settings
...and much more - all for free & no sign in needed!

Check out the get started guide 👉 https://slashy.notion.site/slashy/Get-started-with-Slashy-498ef2b3b5724e5dbb20c7da643d0618

Want to self-host, add new features to Slashy, or even make your own Notion extension? Feel free to check out the code on GitHub! 👉 https://github.com/alyssaxuu/slashy

Slashy is built and maintained by Alyssa X (https://alyssax.com)                    

확장 프로그램 기본 정보

이름 Slashy - Custom commands for Notion Slashy - Custom commands for Notion
ID ccjlpkignaedigchcklcipfbecijllca
공식 URL https://chromewebstore.google.com/detail/slashy-custom-commands-fo/ccjlpkignaedigchcklcipfbecijllca
설명 Record, draw, and create custom commands without leaving Notion.
파일 크기 206 KB
설치 횟수 2,005
현재 버전 1.0.4
최근 업데이트 2022-06-02
출시 날짜 2022-05-30
평점 3.22/5 총 9 개의 평점
개발자 https://slashy.app
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://slashy.app
도움말 페이지 URL https://github.com/alyssaxuu/slashy/issues
개인정보 보호 정책 페이지 URL https://alyssax.com/x/screenity/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slashy - Custom commands for Notion",
    "description": "Record, draw, and create custom commands without leaving Notion.",
    "offline_enabled": false,
    "version": "1.0.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "assets\/16.png",
        "48": "assets\/48.png",
        "128": "assets\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "run_at": "document_end",
            "js": [
                "sval.min.js",
                "fabric.min.js",
                "jquery.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.html",
                "newtab.html",
                "assets\/*",
                "popup.css",
                "popup.js",
                "force.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "clipboardWrite",
        "clipboardRead",
        "storage"
    ]
}