Fatebook for Chrome

The fastest way to make and track predictions

Fatebook for Chromeคืออะไร?

Fatebook for Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sage-webstore-devs และคุณลักษณะหลักของมันคือ "The fastest way to make and track predictions"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fatebook for Chrome

ดาวน์โหลดไฟล์ส่วนขยาย Fatebook for Chrome ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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:\/\/*\/*"
    ]
}