PSE Project/Milestone Expander Plugin

This extension will let you see the entire text of the (usually long) PSE Project and Milestone names

Cos'è PSE Project/Milestone Expander Plugin?

PSE Project/Milestone Expander Plugin è un'estensione di Chrome sviluppata da Remus Victuelles, e la sua funzione principale è "This extension will let you see the entire text of the (usually long) PSE Project and Milestone names".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione PSE Project/Milestone Expander Plugin

Scarica i file di estensione PSE Project/Milestone Expander Plugin 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

                        Save time and avoid the frustration of selecting which project or milestones when submitting your timesheet. PSE Project/Milestone Expander Plugin allows you to set how wide you want the Project and Milestone fields and expands it automatically for you.                    

Informazioni di Base sull'Estensione

Nome PSE Project/Milestone Expander Plugin PSE Project/Milestone Expander Plugin
ID ihkgbcajfjhemofegigoadbggakjkmji
URL Ufficiale https://chromewebstore.google.com/detail/pse-projectmilestone-expa/ihkgbcajfjhemofegigoadbggakjkmji
Descrizione This extension will let you see the entire text of the (usually long) PSE Project and Milestone names
Dimensione del File 11.55 KB
Conteggio Installazioni 77
Versione Corrente 0.0.3.0
Ultimo Aggiornamento 2017-01-12
Data di Pubblicazione 2017-01-11
Sviluppatore Remus Victuelles
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PSE Project\/Milestone Expander Plugin",
    "description": "This extension will let you see the entire text of the (usually long) PSE Project and Milestone names",
    "version": "0.0.3.0",
    "author": "Remus Victuelles ([email protected])",
    "permissions": [
        "tabs",
        "webNavigation",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/apex\/TCEntry*",
                "https:\/\/*.lightning.force.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Set Expander Settings"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}