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".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου 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 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\/*"
    ]
}