Fatebook for Chrome

The fastest way to make and track predictions

Fatebook for Chrome란 무엇입니까?

Fatebook for Chrome은(는) sage-webstore-devs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The fastest way to make and track predictions"입니다.

확장 프로그램 스크린샷

screenshot

Fatebook for Chrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Rapidly record a prediction on any webpage by pressing Ctrl-Shift-F.

Then you can paste an embed of your prediction, right into the webpage (e.g. a Google Doc, Notion document, Asana item, or tweet).

This extension also transforms links to Fatebook predictions into interactive embeds - anywhere on the web. Everyone reading can add their own predictions, add comments, and get notified when the question resolves as YES, NO or AMBIGUOUS.                    

확장 프로그램 기본 정보

이름 Fatebook for Chrome Fatebook for Chrome
ID bbmkpfopjckjieficoddmcjmlkggillm
공식 URL https://chromewebstore.google.com/detail/fatebook-for-chrome/bbmkpfopjckjieficoddmcjmlkggillm
설명 The fastest way to make and track predictions
파일 크기 120 KB
설치 횟수 110
현재 버전 1.0.3
최근 업데이트 2024-02-13
출시 날짜 2023-11-13
평점 5.00/5 총 6 개의 평점
개발자 sage-webstore-devs
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://fatebook.io/extension
개인정보 보호 정책 페이지 URL https://fatebook.io/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fatebook for Chrome",
    "description": "The fastest way to make and track predictions",
    "homepage_url": "https:\/\/fatebook.io\/",
    "version": "1.0.3",
    "manifest_version": 3,
    "action": {
        "default_title": "Click to make a prediction",
        "default_icon": {
            "16": "scale16.png",
            "32": "scale32.png",
            "48": "scale48.png",
            "128": "scale128.png"
        }
    },
    "icons": {
        "16": "scale16.png",
        "32": "scale32.png",
        "48": "scale48.png",
        "128": "scale128.png"
    },
    "author": "[email protected]",
    "short_name": "Fatebook",
    "commands": {
        "open_modal": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Make a new prediction, from any webpage."
        }
    },
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "resources": [
                "\/direct_inject*",
                "*.png"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*\/*",
            "http:\/\/*\/*"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "js": [
                "sentry-content-script.js",
                "after.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ]
}