PSE Project/Milestone Expander Plugin

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

Wat is PSE Project/Milestone Expander Plugin?

PSE Project/Milestone Expander Plugin is een Chrome-extensie ontwikkeld door Remus Victuelles, en de belangrijkste functie is "This extension will let you see the entire text of the (usually long) PSE Project and Milestone names".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie PSE Project/Milestone Expander Plugin

Download PSE Project/Milestone Expander Plugin-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam PSE Project/Milestone Expander Plugin PSE Project/Milestone Expander Plugin
ID ihkgbcajfjhemofegigoadbggakjkmji
Officiële URL https://chromewebstore.google.com/detail/pse-projectmilestone-expa/ihkgbcajfjhemofegigoadbggakjkmji
Beschrijving This extension will let you see the entire text of the (usually long) PSE Project and Milestone names
Bestandsgrootte 11.55 KB
Aantal Installaties 77
Huidige Versie 0.0.3.0
Laatst Bijgewerkt 2017-01-12
Publicatiedatum 2017-01-11
Ontwikkelaar Remus Victuelles
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}