Fatebook for Chrome
The fastest way to make and track predictions
Qu'est-ce que Fatebook for Chrome ?
Fatebook for Chrome est une extension Chrome développée par sage-webstore-devs, et sa fonction principale est "The fastest way to make and track predictions".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Fatebook for Chrome
Téléchargez les fichiers d'extension Fatebook for Chrome au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Fatebook for Chrome |
ID | bbmkpfopjckjieficoddmcjmlkggillm |
URL Officiel | https://chromewebstore.google.com/detail/fatebook-for-chrome/bbmkpfopjckjieficoddmcjmlkggillm |
Description | The fastest way to make and track predictions |
Taille du Fichier | 120 KB |
Nombre d'Installations | 110 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2024-02-13 |
Date de Publication | 2023-11-13 |
Évaluation | 5.00/5 Total 6 Évaluations |
Développeur | sage-webstore-devs |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://fatebook.io/extension |
URL de la Page de Politique de Confidentialité | https://fatebook.io/privacy |
Langues Prises en Charge | 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:\/\/*\/*" ] } |