No Duplicate Issues > JIRA Cloud
🧹 Keep JIRA Clean. ⏲ Avoid Duplicate Efforts.
Vad är No Duplicate Issues > JIRA Cloud?
No Duplicate Issues > JIRA Cloud är en Chrome-tillägg utvecklad av mararn1618, och dess huvudfunktion är "🧹 Keep JIRA Clean. ⏲ Avoid Duplicate Efforts.".
Tilläggsskärmbilder
Ladda ner No Duplicate Issues > JIRA Cloud-förlängningens CRX-fil
Ladda ner No Duplicate Issues > JIRA Cloud-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Stop duplicates by popping up similar issues, right when your teammembers are about to commit the crime 🦹♂️🚓.
👶 Simple: Install the Chrome plugin. Done.
⛅ Made for JIRA Cloud, JIRA Service Management Cloud
💻 Hooks into multiple touchpoints when creating new Issues
• Default Issue Creation Popup
• Quick Issue creation in Backlog View
🚗 Sidecar: Follows the issues you look at notifies you - "👋Hey, this is 79% similar".
🧠 Similar Issues with High Relevancy
• A similarity-score in % indicates how relevant existing issues are
• We use AI/Machine Learning - not simple JQL queries
• In-depth comparsion - not just the new issue's summary
🏠 Search Scope:
• Only your Project
• Groups of Projects
• All Projects Grundläggande Information om Tillägg
| Namn | |
| ID | jihcgbabplihbdibodomdkemeacpcfap |
| Officiell webbadress | https://chromewebstore.google.com/detail/no-duplicate-issues-%3E-jir/jihcgbabplihbdibodomdkemeacpcfap |
| Beskrivning | 🧹 Keep JIRA Clean. ⏲ Avoid Duplicate Efforts. |
| Filstorlek | 3.44 MB |
| Antal Installationer | 110 |
| Aktuell Version | 0.3.0 |
| Senast Uppdaterad | 2021-05-12 |
| Publiceringsdatum | 2021-01-20 |
| Betyg | 3.00/5 Totalt 2 Betyg |
| Utvecklare | mararn1618 |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://marketplace.atlassian.com/apps/1224559/no-duplicate-issues-jira-cloud |
| Hjälpsida URL | https://marketplace.atlassian.com/vendors/1219576/secretbakery-io |
| Stödda Språk | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "No Duplicate Issues > JIRA Cloud",
"description": "\ud83e\uddf9 Keep JIRA Clean. \u23f2 Avoid Duplicate Efforts.",
"version": "0.3.0",
"permissions": [
"storage",
"https:\/\/*.markus-arndt.com\/*"
],
"host_permissions": [
"https:\/\/*.markus-arndt.com"
],
"content_scripts": [
{
"js": [
"lib\/browser-polyfill-nosourcemap.js",
"contentscript.js"
],
"css": [
"contentscript.css"
],
"matches": [
"https:\/\/*.atlassian.com\/*",
"https:\/\/*.atlassian.net\/*"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"options_page": "pages\/options-please-select-site.html",
"browser_action": {
"default_icon": {
"16": "assets\/Logo3-16x16.png",
"48": "assets\/Logo3-48x48.png",
"64": "assets\/Logo3-64x64.png",
"128": "assets\/Logo3-128x128.png"
}
},
"icons": {
"16": "assets\/Logo3-16x16.png",
"48": "assets\/Logo3-48x48.png",
"64": "assets\/Logo3-64x64.png",
"128": "assets\/Logo3-128x128.png"
},
"web_accessible_resources": [
"assets\/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
} | |