Jira External Links Opener

Minimal Extension that help Jira Cloud users to have external links opened another tab to don't loose the current Jira navigation.

Qu'est-ce que Jira External Links Opener ?

Jira External Links Opener est une extension Chrome développée par Pendexgabo, et sa fonction principale est "Minimal Extension that help Jira Cloud users to have external links opened another tab to don't loose the current Jira navigation.".

Télécharger le fichier CRX de l'extension Jira External Links Opener

Téléchargez les fichiers d'extension Jira External Links Opener au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Minimal Extension that help Jira Cloud users to have external links opened another tab to prevent loosing the current Jira navigation.

Versions

0.0.3
  - skip urls in code blocks

0.0.2
  - on document ready event.

0.0.1
 - just the basics.


Development

Please feel free to download the code from https://github.com/pendexgabo/jira-external-links and post any bug or feature request over there.                    

Informations de Base sur l'Extension

Nom Jira External Links Opener Jira External Links Opener
ID lkgfimolfmjbkmjnomiggkcojphppcik
URL Officiel https://chromewebstore.google.com/detail/jira-external-links-opene/lkgfimolfmjbkmjnomiggkcojphppcik
Description Minimal Extension that help Jira Cloud users to have external links opened another tab to don't loose the current Jira navigation.
Taille du Fichier 40.06 KB
Nombre d'Installations 17
Version Actuelle 0.0.3
Dernière Mise à Jour 2016-12-19
Date de Publication 2016-12-19
Développeur Pendexgabo
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira External Links Opener",
    "version": "0.0.3",
    "description": "Minimal Extension that help Jira Cloud users to have  external links opened another tab to don't loose the current Jira navigation.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/arrive.min.js",
                "js\/script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/*.atlassian.net\/*"
    ],
    "manifest_version": 2
}