Webotate (Beta)
Annotate webpages however you like.
¿Qué es Webotate (Beta)?
Webotate (Beta) es una extensión de Chrome desarrollada por Samarth Wahal, y su función principal es "Annotate webpages however you like.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Webotate (Beta)
Descarga archivos de extensión Webotate (Beta) 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
You can annotate books, so why not webpages? This chrome extension was built with the purpose of annotating and making the web your canvas. Whether you create meaningful notes or draw funky mustaches on your friends' pictures is completely up to you. Features: - Annotate with your mouse, and possibly, stylus. - Save/Load annotations from local storage - Clear/Erase whole or parts of annotations - Multiple colors - Ctrl+Click to select content on page while in Annotate mode
Información Básica de la Extensión
Nombre | |
ID | mndfmdpnaddjhajnclbbajfcceojpjbf |
URL Oficial | https://chrome.google.com/webstore/detail/webotate-beta/mndfmdpnaddjhajnclbbajfcceojpjbf |
Descripción | Annotate webpages however you like. |
Tamaño del Archivo | 74.18 KB |
Cantidad de Instalaciones | 210 |
Versión Actual | 0.0.1 |
Última Actualización | 2015-03-24 |
Fecha de Publicación | 2015-03-24 |
Calificación | 4.50/5 Total de 2 Calificaciones |
Desarrollador | Samarth Wahal |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/LordZamy/Webotate |
URL de la Página de Ayuda | https://github.com/LordZamy/Webotate |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Webotate (Beta)", "version": "0.0.1", "manifest_version": 2, "description": "Annotate webpages however you like.", "homepage_url": "http:\/\/google.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/icon19.png", "default_title": "Webotate", "default_popup": "src\/page_action\/page_action.html" }, "permissions": [ "contentSettings", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "src\/inject\/inject.js", "src\/inject\/jquery-2.1.3.min.js", "src\/inject\/store.min.js" ] } ] } |