Fallen London Favourites
Fork of an unofficial Fallen London extension to quickly choose favourite branches
Qu'est-ce que Fallen London Favourites ?
Fallen London Favourites est une extension Chrome développée par forest.vvolf, et sa fonction principale est "Fork of an unofficial Fallen London extension to quickly choose favourite branches".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Fallen London Favourites
Téléchargez les fichiers d'extension Fallen London Favourites 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
Fork of an unofficial Fallen London extension. It allows to mark storylets and options inside storylets with green/red marks and moves them to the top or bottom of the page accordingly. In extension settings you now can choose to disable discard and action buttons for storylets and cards. Shift key on keyboard allows you to make action anyway.
Informations de Base sur l'Extension
Nom | Fallen London Favourites |
ID | jkaoljkdjoecocmlnncdljoeeijlcjao |
URL Officiel | https://chromewebstore.google.com/detail/fallen-london-favourites/jkaoljkdjoecocmlnncdljoeeijlcjao |
Description | Fork of an unofficial Fallen London extension to quickly choose favourite branches |
Taille du Fichier | 66.91 KB |
Nombre d'Installations | 341 |
Version Actuelle | 0.5.2 |
Dernière Mise à Jour | 2020-09-16 |
Date de Publication | 2020-03-15 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | forest.vvolf |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/gasovn/fl_favourites |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fallen London Favourites", "short_name": "Fallen London Favourites", "description": "Fork of an unofficial Fallen London extension to quickly choose favourite branches", "version": "0.5.2", "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.fallenlondon.com\/*" ], "js": [ "js\/lib\/jquery.js", "js\/lib\/mutation-summary.js", "js\/storage.js", "js\/content.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/storage.js", "js\/background.js" ], "persistent": false }, "permissions": [ "storage", "unlimitedStorage", "*:\/\/*.fallenlondon.com\/*" ], "minimum_chrome_version": "49", "options_ui": { "page": "options.html", "chrome_style": false }, "web_accessible_resources": [ "img\/*" ] } |