AutoReviewComments

Add pro-forma comments dialog for reviewing (pre-flag)

Τι είναι το AutoReviewComments;

Το AutoReviewComments είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Derek L., και η κύρια λειτουργία του είναι "Add pro-forma comments dialog for reviewing (pre-flag)".

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

screenshot
screenshot

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

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

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

                        No more re-typing the same comments over and over in StackExchange sites!

This script adds a little 'auto' link next to all comments boxes. When you click the link, you see a popup with 6 configurable auto-comments, which you can easily click to insert.

AutoReviewComments is made by Benjol:
http://stackapps.com/questions/2116/autoreviewcomments-pro-forma-comments-for-se

The code can be viewed here: https://gist.github.com/Benjol/842025

Packed into extension by Derek.                    

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

Όνομα AutoReviewComments AutoReviewComments
ID denkbaalahjlbbfnifkacdigaofcnogg
Επίσημο URL https://chrome.google.com/webstore/detail/autoreviewcomments/denkbaalahjlbbfnifkacdigaofcnogg
Περιγραφή Add pro-forma comments dialog for reviewing (pre-flag)
Μέγεθος Αρχείου 108 KB
Αριθμός Εγκαταστάσεων 21
Τρέχουσα Έκδοση 1.3.3
Τελευταία Ενημέρωση 2014-03-10
Ημερομηνία Δημοσίευσης 2014-03-10
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Derek L.
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://stackapps.com/questions/2116/autoreviewcomments-pro-forma-comments-for-se
Διεύθυνση URL της Σελίδας Βοήθειας http://stackapps.com/questions/2116/autoreviewcomments-pro-forma-comments-for-se
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "content_scripts": [
        {
            "exclude_globs": [],
            "include_globs": [
                "*"
            ],
            "js": [
                "js.js"
            ],
            "matches": [
                "*:\/\/*.stackoverflow.com\/questions*",
                "*:\/\/*.stackoverflow.com\/review*",
                "*:\/\/*.stackoverflow.com\/admin\/dashboard*",
                "*:\/\/*.stackoverflow.com\/tools*",
                "*:\/\/*.serverfault.com\/questions*",
                "*:\/\/*.serverfault.com\/review*",
                "*:\/\/*.serverfault.com\/admin\/dashboard*",
                "*:\/\/*.serverfault.com\/tools*",
                "*:\/\/*.superuser.com\/questions*",
                "*:\/\/*.superuser.com\/review*",
                "*:\/\/*.superuser.com\/admin\/dashboard*",
                "*:\/\/*.superuser.com\/tools*",
                "*:\/\/*.stackexchange.com\/questions*",
                "*:\/\/*.stackexchange.com\/review*",
                "*:\/\/*.stackexchange.com\/admin\/dashboard*",
                "*:\/\/*.stackexchange.com\/tools*",
                "*:\/\/*.askubuntu.com\/questions*",
                "*:\/\/*.askubuntu.com\/review*",
                "*:\/\/*.askubuntu.com\/admin\/dashboard*",
                "*:\/\/*.askubuntu.com\/tools*",
                "*:\/\/*.answers.onstartups.com\/questions*",
                "*:\/\/*.answers.onstartups.com\/review*",
                "*:\/\/*.answers.onstartups.com\/admin\/dashboard*",
                "*:\/\/*.answers.onstartups.com\/tools*",
                "*:\/\/*.mathoverflow.net\/questions*",
                "*:\/\/*.mathoverflow.net\/review*",
                "*:\/\/*.mathoverflow.net\/admin\/dashboard*",
                "*:\/\/*.mathoverflow.net\/tools*",
                "*:\/\/discuss.area51.stackexchange.com\/questions\/*",
                "*:\/\/discuss.area51.stackexchange.com\/review*",
                "*:\/\/discuss.area51.stackexchange.com\/admin\/dashboard*",
                "*:\/\/discuss.area51.stackexchange.com\/tools*",
                "*:\/\/stackapps.com\/questions*",
                "*:\/\/stackapps.com\/review*",
                "*:\/\/stackapps.com\/admin\/dashboard*",
                "*:\/\/stackapps.com\/tools*"
            ],
            "run_at": "document_end"
        }
    ],
    "converted_from_user_script": true,
    "description": "Add pro-forma comments dialog for reviewing (pre-flag)",
    "name": "AutoReviewComments",
    "version": "1.3.3",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}