Fallen London Favourites

Fork of an unofficial Fallen London extension to quickly choose favourite branches

Fallen London Favourites क्या है?

Fallen London Favourites forest.vvolf द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fork of an unofficial Fallen London extension to quickly choose favourite branches"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Fallen London Favourites एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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\/*"
    ]
}