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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } |