Skip to content

Instantly share code, notes, and snippets.

@DanielleSucher
Created June 6, 2012 14:03
Show Gist options
  • Save DanielleSucher/2882044 to your computer and use it in GitHub Desktop.
Save DanielleSucher/2882044 to your computer and use it in GitHub Desktop.
Jira Link Colorizer (chrome extension)
Those links in Jira are really hard to see! Not differentiated by color or underline, yeesh.
This Chrome extension solves that problem by simply adding !important background css to make
all links on your Jira site bright orange and underlined.
To use, just clone this gist and change the links in manifest.json line 11 to match the URL(s)
for your Jira installation. Then go your extension manager and click "Load unpacked extension"
to select the directory and get it running. (If you don't see the link near the top left, check
"developer mode" and it will show up.) Problem solved.
<!doctype html>
<html>
<head>
<title>Background Page</title>
<link rel="stylesheet" type="text/css" href="jiralinks.css" />
</head>
<body>
</body>
</html>
{
"name": "Jira Link Colorizer",
"version": "1.0.0.0",
"description": "Makes links in Jira more visible.",
"background_page": "background.html",
"permissions": [
"tabs", "http://*/*", "https://*/*"
],
"content_scripts": [
{
"matches": ["http://*.*.*/*", "https://*.*.*/*"],
"all_frames": true,
"css": ["jiralinks.css"],
"run_at" : "document_end"
}
],
"content_security_policy": "default-src 'none'; script-src 'self'"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment