ClipIt
This chrome extension clips the selected text on the webpage. These clips can be saved into a text file.
What is ClipIt?
ClipIt is a Chrome extension developed by Mayank Bhardwaj, and its main feature is "This chrome extension clips the selected text on the webpage. These clips can be saved into a text file.".
Extension Screenshots
Download ClipIt Extension CRX File
Download ClipIt extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ClipIt |
ID | jgmemodiapblpagmpfdkpjinbhfkpife |
Official URL | https://chromewebstore.google.com/detail/clipit/jgmemodiapblpagmpfdkpjinbhfkpife |
Description | This chrome extension clips the selected text on the webpage. These clips can be saved into a text file. |
File Size | 39.73 KB |
Installation Count | 1,618 |
Current Version | 1.0 |
Last Updated | 2018-06-20 |
Publish Date | 2018-06-20 |
Rating | 4.67/5 Total 3 Ratings |
Developer | Mayank Bhardwaj |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |