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
扩展基本信息
名称 | 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 |
电子邮箱 | [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" ] } |