roll

Roll any-sided dice in Chrome's Omnibox using dice notation.

Τι είναι το roll;

Το roll είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον cixzhang, και η κύρια λειτουργία του είναι "Roll any-sided dice in Chrome's Omnibox using dice notation.".

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

screenshot

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

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

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

                        Roll is a dice roll extension that lets you roll any-sided dice in Chrome's Omnibox using dice notation. Roll can roll multiple dice with any number of sides and can perform basic addition and subtraction after the dice rolls.

To use Roll:

1. Type "roll" into Chrome's Omnibox (address bar).
2. Hit TAB.
3. Type in your dice notation ("2d6", for example).

Update v2.4.0:
- You can now also use roll by clicking the extension icon in your toolbar
- If you wait about a second, Roll will show the result of your roll in the search suggestions
- Fixed an issue where the input did not stay focused, preventing enter from re-rolling

Update v2.3.2:
- Fixed an issue where the stylesheet would not load.

Update v2.3.1:
- Fixed an issue where Roll opened in the wrong window.

Update v.2.3.0:
- Roll now opens in your active tab instead of opening a new tab each time.
- Added a form that allows you to roll again with the same or different input.
- Roll results now show in the title of the tab.
- Fixing an issue where Roll sometimes shows a blank page after refreshing.

Update v.2.2.2:
- You can now create shortcut for your dice rolls. For example, '1d20 attack' will create a short cut such that 'attack' performs a '1d20'.
- Roll now supports fudge dice through 'df' or 'dF'.

Update v.2.1.0:
- Roll now uses Mersenne Twister for more natural random numbers.
- Roll displays errors when parsing user input.
- Inputs like 'd(n)' now get interpreted as '1d(n)' instead of failing to parse.                    

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

Όνομα roll roll
ID pebdejmeejdpefhefinhebjoonadfpek
Επίσημο URL https://chromewebstore.google.com/detail/roll/pebdejmeejdpefhefinhebjoonadfpek
Περιγραφή Roll any-sided dice in Chrome's Omnibox using dice notation.
Μέγεθος Αρχείου 58.62 KB
Αριθμός Εγκαταστάσεων 607
Τρέχουσα Έκδοση 2.4.0
Τελευταία Ενημέρωση 2017-08-01
Ημερομηνία Δημοσίευσης 2017-07-31
Αξιολόγηση 3.85/5 Συνολικά 13 Αξιολογήσεις
Προγραμματιστής cixzhang
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "roll",
    "version": "2.4.0",
    "manifest_version": 2,
    "description": "Roll any-sided dice in Chrome's Omnibox using dice notation.",
    "omnibox": {
        "keyword": "roll"
    },
    "icons": {
        "16": "assets\/images\/roll16.png",
        "48": "assets\/images\/roll48.png",
        "128": "assets\/images\/roll128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [],
    "web_accessible_resources": [
        "assets\/*",
        "scripts\/*.js",
        "roll.html"
    ],
    "browser_action": {
        "default_title": "Roll",
        "default_icon": {
            "16": "assets\/images\/roll16.png",
            "48": "assets\/images\/roll48.png",
            "128": "assets\/images\/roll128.png"
        },
        "default_popup": "roll.html"
    }
}