OpenGrok Title Fix

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

Apa itu OpenGrok Title Fix?

OpenGrok Title Fix adalah ekstensi Chrome yang dikembangkan oleh Chakri Reddy, dan fitur utamanya adalah "This extension rename tabs title with file name on only OPENGROK website only.Developed for LG INTERNAL USE".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi OpenGrok Title Fix

Unduh file ekstensi OpenGrok Title Fix dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama OpenGrok Title Fix OpenGrok Title Fix
ID kfhehkccginlceldahljdbehbfaepmal
URL Resmi https://chrome.google.com/webstore/detail/opengrok-title-fix/kfhehkccginlceldahljdbehbfaepmal
Deskripsi This extension rename tabs title with file name on only OPENGROK website only.Developed for LG INTERNAL USE
Ukuran File 13.04 KB
Jumlah Instalasi 25
Versi Saat Ini 2.2
Terakhir Diperbarui 2016-08-12
Tanggal Publikasi 2016-08-12
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Chakri Reddy
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://www.chakrireddy.com
Bahasa yang Didukung 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\/"
    ]
}