AutoReviewComments

No more re-typing the same comments over and over!

¿Qué es AutoReviewComments?

AutoReviewComments es una extensión de Chrome desarrollada por Benjol, y su función principal es "No more re-typing the same comments over and over!".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión AutoReviewComments

Descarga archivos de extensión AutoReviewComments en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        No more re-typing the same comments over and over!
--------------------------------------------------

This script adds a little 'auto' link next to all comments boxes on Stack Exchange sites. When you click the link, you see a popup with 6 configurable auto-comments (canned responses), which you can easily click to insert.

Features
--------

1. Read your comment before you post it!
2. Customize the texts
3. Quick user info
4. Automatic notification of new versions
5. Import/export of custom comments
6. Remote source for comments
7. Differentiated comments for questions/answers
8. [type here], [username] & [OP] (& $MYUSERID$)
9. Customise welcome message

Project homepages
    - https://github.com/Benjol/SE-AutoReviewComments
    - http://stackapps.com/q/2116/876                    

Información Básica de la Extensión

Nombre AutoReviewComments AutoReviewComments
ID bcfoamnigomkoaaiceppbbdlembpeejc
URL Oficial https://chrome.google.com/webstore/detail/autoreviewcomments/bcfoamnigomkoaaiceppbbdlembpeejc
Descripción No more re-typing the same comments over and over!
Tamaño del Archivo 55.16 KB
Cantidad de Instalaciones 410
Versión Actual 1.4.5
Última Actualización 2019-02-23
Fecha de Publicación 2019-02-23
Calificación 4.92/5 Total de 12 Calificaciones
Desarrollador Benjol
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Benjol/SE-AutoReviewComments
URL de la Página de Ayuda https://github.com/Benjol/SE-AutoReviewComments/issues
URL de la Página de Política de Privacidad https://github.com/Benjol/SE-AutoReviewComments
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoReviewComments",
    "version": "1.4.5",
    "description": "No more re-typing the same comments over and over!",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "author": "Benjol",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.stackoverflow.com\/*",
                "https:\/\/*.stackoverflow.com\/*",
                "http:\/\/*.serverfault.com\/*",
                "https:\/\/*.serverfault.com\/*",
                "http:\/\/*.superuser.com\/*",
                "https:\/\/*.superuser.com\/*",
                "http:\/\/*.stackexchange.com\/*",
                "https:\/\/*.stackexchange.com\/*",
                "http:\/\/*.askubuntu.com\/*",
                "https:\/\/*.askubuntu.com\/*",
                "http:\/\/*.mathoverflow.net\/*",
                "https:\/\/*.mathoverflow.net\/*",
                "http:\/\/discuss.area51.stackexchange.com\/*",
                "https:\/\/discuss.area51.stackexchange.com\/*",
                "http:\/\/stackapps.com\/*",
                "https:\/\/stackapps.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_idle",
            "js": [
                "jquery-1.8.3.min.js",
                "autoreviewcomments.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "homepage_url": "https:\/\/github.com\/Benjol\/SE-AutoReviewComments",
    "permissions": [
        "activeTab",
        "http:\/\/*.stackoverflow.com\/*",
        "https:\/\/*.stackoverflow.com\/*",
        "http:\/\/*.serverfault.com\/*",
        "https:\/\/*.serverfault.com\/*",
        "http:\/\/*.superuser.com\/*",
        "https:\/\/*.superuser.com\/*",
        "http:\/\/*.stackexchange.com\/*",
        "https:\/\/*.stackexchange.com\/*",
        "http:\/\/*.askubuntu.com\/*",
        "https:\/\/*.askubuntu.com\/*",
        "http:\/\/*.mathoverflow.net\/*",
        "https:\/\/*.mathoverflow.net\/*",
        "http:\/\/discuss.area51.stackexchange.com\/*",
        "https:\/\/discuss.area51.stackexchange.com\/*",
        "http:\/\/stackapps.com\/*",
        "https:\/\/stackapps.com\/*"
    ],
    "web_accessible_resources": [
        "jquery-1.8.3.min.js"
    ]
}