Tab Link Copier
Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs
Tab Link Copierとは何ですか?
Tab Link CopierはVolodya Shtenovychによって開発されたChromeの拡張機能で、その主な機能は「Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs」です。
拡張機能のスクリーンショット
Tab Link Copier拡張機能のCRXファイルをダウンロード
Tab Link Copier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Copies the current page url and title as a rich text link.
Useful when you want to refer to a web-page in a document you are writing - with one click on an icon the link gets copied to clipboard so you can later on simply paste it in a google doc or text editor.
To copy the link of the current tab click on the extension's icon or use the keyboard shortcut: Ctrl+Shift+C (Command+Ctrl+C for Mac). In case of using the shortcut this extension will ask for tabs permissions in order to query the current tab's url. 拡張機能の基本情報
| 名前 | |
| ID | ijkpnaifgolhlcfhcfamddnlnfjpjaji |
| 公式URL | https://chromewebstore.google.com/detail/tab-link-copier/ijkpnaifgolhlcfhcfamddnlnfjpjaji |
| 説明 | Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs |
| ファイルサイズ | 19.26 KB |
| インストール数 | 668 |
| 現在のバージョン | 1.2.3 |
| 最終更新日 | 2020-05-02 |
| 公開日 | 2020-05-02 |
| 評価 | 3.67/5 合計 15 レビュー |
| 開発者 | Volodya Shtenovych |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/Leksyk/chrome-copy-link |
| ヘルプページのURL | https://github.com/Leksyk/chrome-copy-link |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tab Link Copier",
"description": "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs",
"version": "1.2.3",
"background": {
"persistent": false,
"scripts": [
"copyLink.js"
]
},
"browser_action": {
"default_icon": "icon.png"
},
"icons": {
"128": "icon.png"
},
"commands": {
"copy-link": {
"suggested_key": {
"default": "Ctrl+Shift+C",
"mac": "Command+MacCtrl+C"
},
"description": "Copy Link as Rich Text"
},
"copy-as-plain": {
"description": "Copy Link and Title as Plain Text"
}
},
"permissions": [
"clipboardWrite",
"tabs",
"contextMenus"
],
"optional_permissions": [
"notifications"
],
"content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
} | |