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\/*" ] } |