Copy URL And Title
Copy page URL and ticket title
什么是Copy URL And Title?
Copy URL And Title是由NeuLion Web开发的Chrome扩展程序,该扩展的主要功能是“Copy page URL and ticket title”。
扩展截图
下载Copy URL And Title扩展crx文件
下载Copy URL And Title扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Copy both page URL and page title. Click: Copy Link + Title Double Click: Copy Link + Title + JIRA Assignee Ctrl + Click: Short Link + Title If you copy to Rich Text Editor like MS Word, Google Docs, YouDao Note, it will keep the href of the URL
扩展基本信息
名称 | |
ID | hccpddblgkmpaboaibeijeijhpmddefg |
官方URL | https://chrome.google.com/webstore/detail/copy-url-and-title/hccpddblgkmpaboaibeijeijhpmddefg |
简介 | Copy page URL and ticket title |
文件大小 | 35.5 KB |
安装次数 | 101 |
当前版本 | 1.12-20200207 |
更新时间 | 2020-03-03 |
上架时间 | 2020-03-03 |
评分 | 3.67/5 共3次评分 |
开发者 | NeuLion Web |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy URL And Title", "description": "Copy page URL and ticket title", "version": "1.12", "version_name": "1.12-20200207", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "tabs", "background", "notifications", "clipboardWrite", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "38": "icon_38.png", "86": "icon_86.png", "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "copy.js" ], "run_at": "document_end", "all_frames": false } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "name": "Click to copy url and title", "default_icon": "icon_38.png" }, "manifest_version": 2 } |