PenCheck

This extension allows the user to create a work checklist for their browser

¿Qué es PenCheck?

PenCheck es una extensión de Chrome desarrollada por meepitschree, y su función principal es "This extension allows the user to create a work checklist for their browser".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión PenCheck

Descarga archivos de extensión PenCheck 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

                        simple pop-up task list with customizable fonts+colors and a little interactive penguin buddy!

tools used: 
chrome.storage, FontSelect plugin & google font, TheySaidSo quotes


a project made with love by megan & christie
//minor bugs rn:
-checkbox status resets
-reorders tasks alphabetically                    

Información Básica de la Extensión

Nombre PenCheck PenCheck
ID elmbhpmlnkpjgpndmggiapconpfepcfp
URL Oficial https://chromewebstore.google.com/detail/pencheck/elmbhpmlnkpjgpndmggiapconpfepcfp
Descripción This extension allows the user to create a work checklist for their browser
Tamaño del Archivo 452 KB
Cantidad de Instalaciones 16
Versión Actual 0.0.0.1
Última Actualización 2017-11-18
Fecha de Publicación 2017-11-17
Calificación 5.00/5 Total de 8 Calificaciones
Desarrollador meepitschree
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PenCheck",
    "description": "This extension allows the user to create a work checklist for their browser",
    "version": "0.0.0.1",
    "browser_action": {
        "default_icon": "img\/pencheck.png",
        "default_popup": "popup.html",
        "default_title": "PenCheck your tasks!"
    },
    "permissions": [
        "https:\/\/ajax.googleapis.com\/",
        "storage",
        "https:\/\/fonts.googleapis.com\/css?family="
    ],
    "background": {
        "scripts": [
            "jquery.fontselect.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'"
}