Snip-It
Copy a simple text snippet about the active tab to the clipboard
What is Snip-It?
Snip-It is a Chrome extension developed by crowe.mitch, and its main feature is "Copy a simple text snippet about the active tab to the clipboard".
Download Snip-It Extension CRX File
Download Snip-It 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
Save webpages to your clipboard for easy pasting into a markdown document.
Extension Basic Information
Name | ![]() |
ID | fbioimabbleddmecllbenileihlpnamf |
Official URL | https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf |
Description | Copy a simple text snippet about the active tab to the clipboard |
File Size | 33.33 KB |
Installation Count | 481 |
Current Version | 2.0 |
Last Updated | 2017-01-04 |
Publish Date | 2017-01-04 |
Developer | crowe.mitch |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Snip-It", "description": "Copy a simple text snippet about the active tab to the clipboard", "version": "2.0", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "jquery-2.1.0.min.js", "background.js" ], "persistent": false }, "commands": { "tab-snippet": { "suggested_key": { "default": "Ctrl+Shift+S", "mac": "Command+Shift+S" }, "description": "Copy a snippet of the current tab" } }, "browser_action": { "default_title": "Copy a snippet to the clipboard", "default_icon": "icon.png" }, "manifest_version": 2 } |