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」です。
拡張機能のスクリーンショット
Fatebook for Chrome拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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:\/\/*\/*"
]
} | |