ClipIt

This chrome extension clips the selected text on the webpage. These clips can be saved into a text file.

¿Qué es ClipIt?

ClipIt es una extensión de Chrome desarrollada por Mayank Bhardwaj, y su función principal es "This chrome extension clips the selected text on the webpage. These clips can be saved into a text file.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión ClipIt

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

                        This is a simple note clipper extension app that helps you to save the import text you come across while reading a webpage.

After selecting the text you want clip the right click menu option shows a ClipIt option. This option clips the text and adds it over the clipboard popup which can be accessed from the top right of the browser.

This popup acts as a clipboard to see your recently clipped notes.
You can export the notes using "Export Notes" into a text file. You may want to clear all the notes over the clipboard whenever you want a fresh clipboard. This could be done through "Clear Notes" option.                    

Información Básica de la Extensión

Nombre ClipIt ClipIt
ID jgmemodiapblpagmpfdkpjinbhfkpife
URL Oficial https://chromewebstore.google.com/detail/clipit/jgmemodiapblpagmpfdkpjinbhfkpife
Descripción This chrome extension clips the selected text on the webpage. These clips can be saved into a text file.
Tamaño del Archivo 39.73 KB
Cantidad de Instalaciones 1,618
Versión Actual 1.0
Última Actualización 2018-06-20
Fecha de Publicación 2018-06-20
Calificación 4.67/5 Total de 3 Calificaciones
Desarrollador Mayank Bhardwaj
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ClipIt",
    "version": "1.0",
    "description": "This chrome extension clips the selected text on the webpage. These clips can be saved into a text file.",
    "icons": {
        "48": "icons\/clipit48.png",
        "128": "icons\/clipit128.png"
    },
    "browser_action": {
        "default_icon": "icons\/clipit128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "notifications",
        "contextMenus"
    ]
}