Quick URL copy
Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)
Quick URL copyとは何ですか?
Quick URL copyはMikhail Aksenovによって開発されたChromeの拡張機能で、その主な機能は「Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)」です。
拡張機能のスクリーンショット
Quick URL copy拡張機能のCRXファイルをダウンロード
Quick URL copy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simple extension which copied to clipboard title and URL current page.
For Atlassian JIRA issue number, description and link.
Just press Ctrl-Alt-C / Control-Command-C for Mac
Add some defaults for YouTube and Trello. 拡張機能の基本情報
| 名前 | |
| ID | khfjmphfblpcbnmlamiclchbdndleabd |
| 公式URL | https://chromewebstore.google.com/detail/quick-url-copy/khfjmphfblpcbnmlamiclchbdndleabd |
| 説明 | Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C) |
| ファイルサイズ | 14.52 KB |
| インストール数 | 100 |
| 現在のバージョン | Make title useful again for izbirkom.ru |
| 最終更新日 | 2022-02-16 |
| 公開日 | 2020-03-28 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | Mikhail Aksenov |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Quick URL copy",
"version": "1.5.8",
"version_name": "Make title useful again for izbirkom.ru",
"manifest_version": 2,
"description": "Copy current page URL and description to clipboard by hotkey (Ctrl+Alt+C)",
"short_name": "Copy page info",
"browser_action": {
"default_icon": "icon128.png"
},
"homepage_url": "https:\/\/github.com\/xeningem\/quick_url_copy",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*",
"file:\/\/\/*:\/*\/*"
],
"js": [
"getText.js",
"content.js"
]
}
],
"background": {
"persistent": false,
"page": "background.html"
},
"options_page": "options.html",
"permissions": [
"activeTab",
"clipboardWrite",
"storage"
]
} | |