PSE Project/Milestone Expander Plugin
This extension will let you see the entire text of the (usually long) PSE Project and Milestone names
Was ist PSE Project/Milestone Expander Plugin?
PSE Project/Milestone Expander Plugin ist eine Chrome-Erweiterung, die von Remus Victuelles entwickelt wurde, und ihr Hauptmerkmal ist "This extension will let you see the entire text of the (usually long) PSE Project and Milestone names".
Erweiterungsscreenshots
PSE Project/Milestone Expander Plugin-Erweiterungs-CRX-Datei herunterladen
Laden Sie PSE Project/Milestone Expander Plugin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | PSE Project/Milestone Expander Plugin |
ID | ihkgbcajfjhemofegigoadbggakjkmji |
Offizielle URL | https://chromewebstore.google.com/detail/pse-projectmilestone-expa/ihkgbcajfjhemofegigoadbggakjkmji |
Beschreibung | This extension will let you see the entire text of the (usually long) PSE Project and Milestone names |
Dateigröße | 11.55 KB |
Installationsanzahl | 77 |
Aktuelle Version | 0.0.3.0 |
Letztes Update | 2017-01-12 |
Veröffentlichungsdatum | 2017-01-11 |
Entwickler | Remus Victuelles |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |