Fallen London Favourites
Fork of an unofficial Fallen London extension to quickly choose favourite branches
Co to jest Fallen London Favourites?
Fallen London Favourites to rozszerzenie Chrome opracowane przez forest.vvolf, a jego główną funkcją jest „Fork of an unofficial Fallen London extension to quickly choose favourite branches”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Fallen London Favourites
Pobierz pliki rozszerzeń Fallen London Favourites w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Fallen London Favourites |
ID | jkaoljkdjoecocmlnncdljoeeijlcjao |
Oficjalny URL | https://chromewebstore.google.com/detail/fallen-london-favourites/jkaoljkdjoecocmlnncdljoeeijlcjao |
Opis | Fork of an unofficial Fallen London extension to quickly choose favourite branches |
Rozmiar pliku | 66.91 KB |
Liczba instalacji | 341 |
Aktualna Wersja | 0.5.2 |
Ostatnia Aktualizacja | 2020-09-16 |
Data Publikacji | 2020-03-15 |
Ocena | 5.00/5 Łącznie 5 Oceny |
Deweloper | forest.vvolf |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/gasovn/fl_favourites |
Obsługiwane Języki | 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\/*" ] } |