Copy the link to GitHub issue
Copy the link to a GitHub issue as Markdown/HTML/Plaintext
什么是Copy the link to GitHub issue?
Copy the link to GitHub issue是由obiyuta开发的Chrome扩展程序,该扩展的主要功能是“Copy the link to a GitHub issue as Markdown/HTML/Plaintext”。
扩展截图
下载Copy the link to GitHub issue扩展crx文件
下载Copy the link to GitHub issue扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
You can copy the link to GitHub issue or pull request url with title and id as Markdown/HTML/Plaintext.
For example, plain text is like the below👇,
#5|Sample pull request (Pull request)
https://github.com/obiyuta/chrome-copy-link-to-issue/pull/5
or Markdown like the below👇
[#5|Sample pull request (Pull request)](https://github.com/obiyuta/chrome-copy-link-to-issue/pull/5) 扩展基本信息
| 名称 | |
| ID | cnnomdadchddnfpalaaoniehedbffnpp |
| 官方URL | https://chromewebstore.google.com/detail/copy-the-link-to-github-i/cnnomdadchddnfpalaaoniehedbffnpp |
| 简介 | Copy the link to a GitHub issue as Markdown/HTML/Plaintext |
| 文件大小 | 63.92 KB |
| 安装次数 | 107 |
| 当前版本 | 0.2.0 |
| 更新时间 | 2020-08-12 |
| 上架时间 | 2017-09-15 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | obiyuta |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/obiyuta/chrome-copy-link-to-issue |
| 支持的语言 | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.2.0",
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"default_locale": "ja",
"background": {
"scripts": [
"scripts\/background.js"
],
"persistent": false
},
"page_action": {
"default_icon": "images\/icon32.png",
"default_title": "copy",
"default_popup": "views\/popup.html"
},
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
"permissions": [
"clipboardWrite",
"activeTab",
"declarativeContent"
],
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"manifest_version": 2
} | |