Create Link
Copy current page URL to clipboard in various formats.
Create Linkとは何ですか?
Create Linkはkuによって開発されたChromeの拡張機能で、その主な機能は「Copy current page URL to clipboard in various formats.」です。
拡張機能のスクリーンショット
Create Link拡張機能のCRXファイルをダウンロード
Create Link拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
(Tested on OSX, WindowsXP, Windows7/64bit)
Make HTML link tag easily like Firefox addon Make Link.
Copy current page title and URL to clipboard in various formats.
*plain text ([page title] [page URL])
*HTML link ([page title]
*markdown
*mediawiki
In extension options page, you can configure formats and shortcut key.
Source code is available at http://github.com/ku/CreateLink
Tweet @ku if something is wrong with Create Link 拡張機能の基本情報
| 名前 | |
| ID | gcmghdmnkfdbncmnmlkkglmnnhagajbm |
| 公式URL | https://chromewebstore.google.com/detail/create-link/gcmghdmnkfdbncmnmlkkglmnnhagajbm |
| 説明 | Copy current page URL to clipboard in various formats. |
| ファイルサイズ | 32.25 KB |
| インストール数 | 40,175 |
| 現在のバージョン | 0.5.7 |
| 最終更新日 | 2022-01-12 |
| 公開日 | 2017-07-25 |
| 評価 | 4.25/5 合計 166 レビュー |
| 開発者 | ku |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://twitter.com/ku/ |
| ヘルプページのURL | http://github.com/ku/CreateLink |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Create Link",
"version": "0.5.7",
"manifest_version": 3,
"background": {
"service_worker": "js\/service-worker.js"
},
"action": {
"default_icon": "icon64.png",
"default_title": "Create Link",
"default_popup": "popup.html"
},
"description": "Copy current page URL to clipboard in various formats.",
"icons": {
"128": "icon128.png",
"16": "icon16.png",
"32": "icon32.png",
"64": "icon64.png"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/\/*\/*"
],
"css": [],
"js": [
"js\/content.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"commands": {
"current-tab-link": {
"description": "Current tab in default format"
}
},
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"permissions": [
"contextMenus",
"storage",
"clipboardWrite"
]
} | |