Fallen London Favourites
Fork of an unofficial Fallen London extension to quickly choose favourite branches
什麼是Fallen London Favourites?
Fallen London Favourites是由forest.vvolf開發的Chrome擴展程式,該擴展的主要功能是“Fork of an unofficial Fallen London extension to quickly choose favourite branches”。
擴展截圖
下載Fallen London Favourites擴展crx文件
下載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 |
官方網址 | 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\/*" ] } |