Snip-It
Copy a simple text snippet about the active tab to the clipboard
Snip-Itとは何ですか?
Snip-Itはcrowe.mitchによって開発されたChromeの拡張機能で、その主な機能は「Copy a simple text snippet about the active tab to the clipboard」です。
Snip-It拡張機能のCRXファイルをダウンロード
Snip-It拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Save webpages to your clipboard for easy pasting into a markdown document.
拡張機能の基本情報
名前 | ![]() |
ID | fbioimabbleddmecllbenileihlpnamf |
公式URL | https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf |
説明 | Copy a simple text snippet about the active tab to the clipboard |
ファイルサイズ | 33.33 KB |
インストール数 | 481 |
現在のバージョン | 2.0 |
最終更新日 | 2017-01-04 |
公開日 | 2017-01-04 |
開発者 | crowe.mitch |
支払い方法 | free |
対応言語 | 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 } |