PSE Project/Milestone Expander Plugin
This extension will let you see the entire text of the (usually long) PSE Project and Milestone names
PSE Project/Milestone Expander Plugin क्या है?
PSE Project/Milestone Expander Plugin Remus Victuelles द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will let you see the entire text of the (usually long) PSE Project and Milestone names"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PSE Project/Milestone Expander Plugin एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | PSE Project/Milestone Expander Plugin |
ID | ihkgbcajfjhemofegigoadbggakjkmji |
आधिकारिक URL | https://chromewebstore.google.com/detail/pse-projectmilestone-expa/ihkgbcajfjhemofegigoadbggakjkmji |
विवरण | This extension will let you see the entire text of the (usually long) PSE Project and Milestone names |
फ़ाइल का आकार | 11.55 KB |
स्थापना संख्या | 77 |
वर्तमान संस्करण | 0.0.3.0 |
अंतिम अपडेट | 2017-01-12 |
प्रकाशन तिथि | 2017-01-11 |
डेवलपर | Remus Victuelles |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } |