Fatebook for Chrome
The fastest way to make and track predictions
Fatebook for Chrome क्या है?
Fatebook for Chrome sage-webstore-devs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The fastest way to make and track predictions"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fatebook for Chrome एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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:\/\/*\/*" ] } |