OpenGrok Title Fix

This extension rename tabs title with file name on only OPENGROK website only.Developed for LG INTERNAL USE

What is OpenGrok Title Fix?

OpenGrok Title Fix is a Chrome extension developed by Chakri Reddy, and its main feature is "This extension rename tabs title with file name on only OPENGROK website only.Developed for LG INTERNAL USE".

Extension Screenshots

screenshot

Download OpenGrok Title Fix Extension CRX File

Download OpenGrok Title Fix extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension rename tabs title with file name on only OPENGROK website. Developed for LG INTERNAL USE                    

Extension Basic Information

Name OpenGrok Title Fix OpenGrok Title Fix
ID kfhehkccginlceldahljdbehbfaepmal
Official URL https://chrome.google.com/webstore/detail/opengrok-title-fix/kfhehkccginlceldahljdbehbfaepmal
Description This extension rename tabs title with file name on only OPENGROK website only.Developed for LG INTERNAL USE
File Size 13.04 KB
Installation Count 25
Current Version 2.2
Last Updated 2016-08-12
Publish Date 2016-08-12
Rating 5.00/5 Total 1 Ratings
Developer Chakri Reddy
Email [email protected]
Payment Type free
Extension Website http://www.chakrireddy.com
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OpenGrok Title Fix",
    "description": "This extension rename tabs title with file name on only OPENGROK website only.Developed for LG INTERNAL USE",
    "version": "2.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/opengrok.lge.com:8080\/*",
                "http:\/\/10.221.31.30:8080\/*",
                "http:\/\/androidxref.com\/*"
            ],
            "js": [
                "bg1.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "https:\/\/ajax.googleapis.com\/"
    ]
}