rpjeeves

A browser extension to help GMs spend more time telling a compelling story, and less time being a computer.

Τι είναι το rpjeeves;

Το rpjeeves είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rpjeeves, και η κύρια λειτουργία του είναι "A browser extension to help GMs spend more time telling a compelling story, and less time being a computer.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης rpjeeves

Λήψη αρχείων επέκτασης rpjeeves σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        What's new in 0.0.3:
 - Changed the default behavior of roll popovers to dismiss when you click away from them. 
 - As always, please don't hesitate to leave any feedback or report issues on github.

What's new in 0.0.2:
 - Fixed a bug with the prd website where their jquery was getting stomped by rpjeeves
 - Changed the way replace works. This should improve performance on all pages.

A browser extension that we're working on to help GMs spend more time telling a compelling story, and less time being a computer. We play a lot of pathfinder, but we're sick of (and bad at) all of the bookkeeping needed to run a smooth session, so we're making the tool that we've always wanted. 

With rpjeeves active in your browser, pages that you visit that rpjeeves recognizes as monster or bestiary pages are automatically augmented with skill, attack, and damage roll buttons, allowing you to get back to the game sooner when doing quick lookups.

We've tested rpjeeves on the official paizo prd and d20pfsrd.com, but there's no reason that rpjeeves should be limited to these two reference documents. rpjeeves looks at the grammar of the document, and does its best to recognize when text is referencing a roll. Obviously this can be pretty hit and miss. "28d12+62" is very easy to find, but if a site tends to break standards ("damage: roll two twelve sided dice and add fourteen") rpjeeves is going to get confused. That being said, we're really anxious to hear what reference sites GMs are using these days so that we can do our best to test against all eventualities.

This is just the beginning; rpjeeves is currently in open beta. Expect to see features such as saving and tracking monsters for your campaign, automatic initiative rolls, and more.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα rpjeeves rpjeeves
ID lmngdmedfflbolpooefdgkeljfiiidbb
Επίσημο URL https://chromewebstore.google.com/detail/rpjeeves/lmngdmedfflbolpooefdgkeljfiiidbb
Περιγραφή A browser extension to help GMs spend more time telling a compelling story, and less time being a computer.
Μέγεθος Αρχείου 401 KB
Αριθμός Εγκαταστάσεων 74
Τρέχουσα Έκδοση 0.0.3
Τελευταία Ενημέρωση 2014-10-28
Ημερομηνία Δημοσίευσης 2014-10-28
Αξιολόγηση 4.75/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής rpjeeves
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/nihakue/rpjeeves
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/nihakue/rpjeeves
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "rpjeeves",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "A browser extension to help GMs spend more time telling a compelling story, and less time being a computer.",
    "homepage_url": "http:\/\/github.com\/nihakue\/rpjeeves",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "options_page": "src\/options_custom\/index.html",
    "permissions": [],
    "omnibox": {
        "keyword": "jeeves"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*bestiary*",
                "*:\/\/*\/*Bestiary*",
                "*:\/\/*\/*monsters*",
                "*:\/\/*\/*Monsters*",
                "*:\/\/*\/*monster*",
                "*:\/\/*\/*Monster*"
            ],
            "js": [
                "js\/jquery\/jquery-2.1.1.min.js",
                "js\/bootstrap\/bootstrap.min.js",
                "src\/inject\/inject.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*bestiary*",
                "*:\/\/*\/*Bestiary*",
                "*:\/\/*\/*monsters*",
                "*:\/\/*\/*Monsters*",
                "*:\/\/*\/*monster*",
                "*:\/\/*\/*Monster*"
            ],
            "css": [
                "src\/inject\/inject.css",
                "css\/bootstrap.min.css"
            ]
        }
    ]
}