Slate Web Extension

Easily save any link to your Slate account.

Slate Web Extension란 무엇입니까?

Slate Web Extension은(는) hello에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily save any link to your Slate account."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Slate Web Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Slate is a personal storage space that helps you keep track and come back to things you care about on the web.

Get started with 30GB of free storage and begin collecting with the Slate Web Extension today.                    

확장 프로그램 기본 정보

이름 Slate Web Extension Slate Web Extension
ID gloembacbehhbfbkcfjmloikeeaebnoc
공식 URL https://chromewebstore.google.com/detail/slate-web-extension/gloembacbehhbfbkcfjmloikeeaebnoc
설명 Easily save any link to your Slate account.
파일 크기 2.66 MB
설치 횟수 645
현재 버전 4.0.1
최근 업데이트 2022-10-04
출시 날짜 2020-09-15
평점 3.71/5 총 7 개의 평점
개발자 hello
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://slate.host/
도움말 페이지 URL https://slate.host/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Slate Web Extension",
    "description": "Easily save any link to your Slate account.",
    "version": "4.0.1",
    "homepage_url": "https:\/\/slate.host",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "icon128.png",
        "default_title": "Slate Web Extension"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                ".\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "chrome_url_overrides": {
        "newtab": "newTab.html"
    },
    "permissions": [
        "tabs",
        "cookies",
        "commands",
        "bookmarks",
        "history",
        "storage",
        "unlimitedStorage",
        "tabGroups"
    ],
    "host_permissions": [
        "https:\/\/slate.host\/",
        "https:\/\/slate-dev.onrender.com\/"
    ],
    "commands": {
        "open-app": {
            "suggested_key": {
                "default": "Ctrl+Period",
                "mac": "Command+J"
            },
            "description": "Open the slate extension"
        },
        "open-app-on-slates": {
            "suggested_key": {
                "default": "Alt+T",
                "mac": "Alt+T"
            },
            "description": "Open the slate extension"
        },
        "direct-save": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            },
            "description": "Direct save"
        }
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "index.html",
                "\/fonts\/*",
                "static\/*",
                "\/images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}