Webotate (Beta)
Annotate webpages however you like.
Qu'est-ce que Webotate (Beta) ?
Webotate (Beta) est une extension Chrome développée par Samarth Wahal, et sa fonction principale est "Annotate webpages however you like.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Webotate (Beta)
Téléchargez les fichiers d'extension Webotate (Beta) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | mndfmdpnaddjhajnclbbajfcceojpjbf |
URL Officiel | https://chrome.google.com/webstore/detail/webotate-beta/mndfmdpnaddjhajnclbbajfcceojpjbf |
Description | Annotate webpages however you like. |
Taille du Fichier | 74.18 KB |
Nombre d'Installations | 210 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2015-03-24 |
Date de Publication | 2015-03-24 |
Évaluation | 4.50/5 Total 2 Évaluations |
Développeur | Samarth Wahal |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/LordZamy/Webotate |
URL de la Page d'Aide | https://github.com/LordZamy/Webotate |
Langues Prises en Charge | 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" ] } ] } |