PSE Project/Milestone Expander Plugin

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

What is PSE Project/Milestone Expander Plugin?

PSE Project/Milestone Expander Plugin is a Chrome extension developed by Remus Victuelles, and its main feature is "This extension will let you see the entire text of the (usually long) PSE Project and Milestone names".

Extension Screenshots

screenshot

Download PSE Project/Milestone Expander Plugin Extension CRX File

Download PSE Project/Milestone Expander Plugin 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

                        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.                    

Extension Basic Information

Name PSE Project/Milestone Expander Plugin PSE Project/Milestone Expander Plugin
ID ihkgbcajfjhemofegigoadbggakjkmji
Official URL https://chromewebstore.google.com/detail/pse-projectmilestone-expa/ihkgbcajfjhemofegigoadbggakjkmji
Description This extension will let you see the entire text of the (usually long) PSE Project and Milestone names
File Size 11.55 KB
Installation Count 77
Current Version 0.0.3.0
Last Updated 2017-01-12
Publish Date 2017-01-11
Developer Remus Victuelles
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}