OpenGrok Title Fix

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

Cos'è OpenGrok Title Fix?

OpenGrok Title Fix è un'estensione di Chrome sviluppata da Chakri Reddy, e la sua funzione principale è "This extension rename tabs title with file name on only OPENGROK website only.Developed for LG INTERNAL USE".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione OpenGrok Title Fix

Scarica i file di estensione OpenGrok Title Fix in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome OpenGrok Title Fix OpenGrok Title Fix
ID kfhehkccginlceldahljdbehbfaepmal
URL Ufficiale https://chrome.google.com/webstore/detail/opengrok-title-fix/kfhehkccginlceldahljdbehbfaepmal
Descrizione This extension rename tabs title with file name on only OPENGROK website only.Developed for LG INTERNAL USE
Dimensione del File 13.04 KB
Conteggio Installazioni 25
Versione Corrente 2.2
Ultimo Aggiornamento 2016-08-12
Data di Pubblicazione 2016-08-12
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Chakri Reddy
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://www.chakrireddy.com
Lingue Supportate 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\/"
    ]
}