Fallen London Favourites
Fork of an unofficial Fallen London extension to quickly choose favourite branches
Что такое Fallen London Favourites?
Fallen London Favourites - это расширение Chrome, разработанное forest.vvolf, и его основная функция - "Fork of an unofficial Fallen London extension to quickly choose favourite branches".
Снимки экрана расширения
Скачать файл CRX расширения Fallen London Favourites
Скачайте файлы расширений Fallen London Favourites в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Fallen London Favourites |
ID | jkaoljkdjoecocmlnncdljoeeijlcjao |
Официальный URL | https://chromewebstore.google.com/detail/fallen-london-favourites/jkaoljkdjoecocmlnncdljoeeijlcjao |
Описание | Fork of an unofficial Fallen London extension to quickly choose favourite branches |
Размер файла | 66.91 KB |
Количество установок | 341 |
Текущая Версия | 0.5.2 |
Последнее Обновление | 2020-09-16 |
Дата публикации | 2020-03-15 |
Рейтинг | 5.00/5 Всего 5 оценок |
Разработчик | forest.vvolf |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/gasovn/fl_favourites |
Поддерживаемые языки | 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\/*" ] } |