Colors log files
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "log-colorer",
"description": "Color the logs",
"version": "1.109",
"icons": {
"16": "images/icon-16.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"permissions": [
"http://*/*",
"https://*/*",
"storage",
"webRequest",
"webRequestBlocking",
"alarms"
],
"background": {
"scripts": [
"browser-polyfill.min.js",
"jquery.min.js",
"utils.js",
"background.js"
],
"persistent": true
},
"web_accessible_resources": [
"jquery.min.js",
"jquery-ui.min.js",
"bootstrap.min.js",
"bootstrap.min.css",
"add_nav.css",
"add_nav.js",
"coloring.css",
"coloring.js",
"utils.js"
],
"content_scripts": [
{
"matches": [
"https://www.google.com/search*"
],
"css": [
"mark_bad_sites.css"
],
"js": [
"mark_bad_sites.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*/*",
"file:///*/*"
],
"js": [
"browser-polyfill.min.js",
"utils.js",
"before.js",
"jquery.min.js",
"jquery-ui.min.js"
],
"run_at": "document_start"
},
{
"matches": [
"http://stash/projects/*/repos/*/pull-requests/**"
],
"js": [
"jquery.min.js",
"pr_build.js",
"pr_merge.js"
],
"run_at": "document_end"
},
{
"matches": [
"http://stash/projects/*/repos/*/commits/*"
],
"js": [
"browser-polyfill.min.js",
"jquery.min.js",
"stash_commit.js"
],
"run_at": "document_end"
},
{
"matches": [
"http://stash/projects/*/repos/*/pull-requests/**",
"http://stash/projects/*/repos/*/compare/diff*"
],
"js": [
"browser-polyfill.min.js",
"jquery.min.js",
"stash_pr.js"
],
"run_at": "document_end"
},
{
"matches": [
"http://bamboo/browse/**"
],
"js": [
"add_bamboo_log_link.js"
],
"run_at": "document_end"
},
{
"matches": [
"http://scheduler/**",
"http://scheduler.headlandstech.com/**"
],
"js": [
"jquery.min.js",
"scheduler.js"
],
"run_at": "document_end"
},
{
"matches": [
"http://jira/**",
"https://jira/**",
"http://jira.headlandstech.com/**",
"https://jira.headlandstech.com/**"
],
"js": [
"jquery.min.js",
"jira.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://outlook.office.com/**",
"http://outlook.office.com/**",
"https://outlook.office365.com/**",
"http://outlook.office365.com/**"
],
"js": [
"jquery.min.js",
"outlook.js"
],
"run_at": "document_end"
}
],
"browser_action": {
"default_popup": "popup.html"
},
"browser_specific_settings": {
"gecko": {
"id": "log_colorer_addon@headlandstech.com"
}
}
}