PSE Project/Milestone Expander Plugin
This extension will let you see the entire text of the (usually long) PSE Project and Milestone names
Qu'est-ce que PSE Project/Milestone Expander Plugin ?
PSE Project/Milestone Expander Plugin est une extension Chrome développée par Remus Victuelles, et sa fonction principale est "This extension will let you see the entire text of the (usually long) PSE Project and Milestone names".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension PSE Project/Milestone Expander Plugin
Téléchargez les fichiers d'extension PSE Project/Milestone Expander Plugin au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | PSE Project/Milestone Expander Plugin |
ID | ihkgbcajfjhemofegigoadbggakjkmji |
URL Officiel | 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 |
Taille du Fichier | 11.55 KB |
Nombre d'Installations | 77 |
Version Actuelle | 0.0.3.0 |
Dernière Mise à Jour | 2017-01-12 |
Date de Publication | 2017-01-11 |
Développeur | Remus Victuelles |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |