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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
} | |