C&P Chrome Extension
Adds autocomplete functionality to the Clients & Profits web time card
C&P Chrome Extension क्या है?
C&P Chrome Extension Ryan Bagwell द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds autocomplete functionality to the Clients & Profits web time card"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में C&P Chrome Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Now you no longer have to remember complex job numbers or cumbersome task IDs. 1. Set your Clients & Profits web url in the extension's options page. File > Preferences > Extensions, then click the options link under the extension name 2. Now, when you click the C&P icon in the top-right corner, it will take you to your time card. 3. Start typing some characters in the "Job" field, and a list of job titles will appear. 4. After selecting a job, you'll be able to see a list of available tasks that are associated with that job.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | jebjdphnbeoigigjbemknhklddadlpna |
आधिकारिक URL | https://chromewebstore.google.com/detail/cp-chrome-extension/jebjdphnbeoigigjbemknhklddadlpna |
विवरण | Adds autocomplete functionality to the Clients & Profits web time card |
फ़ाइल का आकार | 355 KB |
स्थापना संख्या | 14 |
वर्तमान संस्करण | 1.4.13 |
अंतिम अपडेट | 2019-03-19 |
प्रकाशन तिथि | 2019-03-19 |
डेवलपर | Ryan Bagwell |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "C&P Chrome Extension", "version": "1.4.13", "manifest_version": 2, "description": "Adds autocomplete functionality to the Clients & Profits web time card", "icons": { "16": "dist\/img\/icon.logo.16.png", "48": "dist\/img\/icon.logo.48.png", "128": "dist\/img\/icon.logo.128.png" }, "browser_action": { "default_icon": { "19": "dist\/img\/icon.logo.19.png", "38": "dist\/img\/icon.logo.38.png" }, "default_title": "Clients & Profits", "name": "Clients & Profits" }, "options_page": "dist\/html\/settings.html", "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "tabs", "storage" ], "background": { "scripts": [ "dist\/browseraction.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "dist\/controller.js" ], "css": [ "dist\/css\/jquery-ui\/jquery-ui.min.css", "dist\/css\/jquery-ui\/theme.css", "dist\/css\/ui.css" ] } ], "web_accessible_resources": [ "dist\/globalaccess.js", "dist\/img\/loading.svg" ] } |