GitHub Issue Copy Extension
This extension supports copying and creating new issues on GitHub.
ما هو GitHub Issue Copy Extension؟
GitHub Issue Copy Extension هو إضافة Chrome تم تطويرها بواسطة Haruya Nakamura، والميزة الرئيسية لها هي "This extension supports copying and creating new issues on GitHub.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GitHub Issue Copy Extension
قم بتنزيل ملفات الامتداد GitHub Issue Copy Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension supports copying and creating new issues on GitHub. Right-click on the screen of the issue you want to copy and click "Copy this issue" to open the screen to copy the Subject, Body, Labels, and Assignees to create a new issue.
معلومات أساسية عن التمديد
الاسم | GitHub Issue Copy Extension |
ID | poibkcoliihonlklhhflnhjkjjbbmklf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/github-issue-copy-extensi/poibkcoliihonlklhhflnhjkjjbbmklf |
الوصف | This extension supports copying and creating new issues on GitHub. |
حجم الملف | 55.59 KB |
عدد التثبيتات | 415 |
النسخة الحالية | 1.1.1 |
آخر تحديث | 2023-06-22 |
تاريخ النشر | 2021-08-03 |
المطور | Haruya Nakamura |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/hareruya-maro/github-issue-copy-extention |
عنوان صفحة المساعدة | https://github.com/hareruya-maro/github-issue-copy-extention |
اللغات المدعومة | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_Name__", "description": "__MSG_Description__", "manifest_version": 3, "default_locale": "en", "version": "1.1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/issues\/*" ], "js": [ "content.js" ] } ], "permissions": [ "tabs", "contextMenus" ] } |