Workday Tools
Search for highlighted text in Workday
ما هو Workday Tools؟
Workday Tools هو إضافة Chrome تم تطويرها بواسطة thechrisanderson، والميزة الرئيسية لها هي "Search for highlighted text in Workday".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Workday Tools
قم بتنزيل ملفات الامتداد Workday Tools بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Allows you to highlight text in your browser and perform actions in workday on the text by right clicking, such as search, or proxy-as. Particularly useful for finding people in workday directly from your email.
معلومات أساسية عن التمديد
الاسم | Workday Tools |
ID | penaffiinfapndnaoejcnnnipidnomdd |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/workday-tools/penaffiinfapndnaoejcnnnipidnomdd |
الوصف | Search for highlighted text in Workday |
حجم الملف | 19.02 KB |
عدد التثبيتات | 2,843 |
النسخة الحالية | 1.1 |
آخر تحديث | 2016-12-29 |
تاريخ النشر | 2016-12-29 |
تقييم | 3.88/5 مجموع تقييمات 8 |
المطور | thechrisanderson |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Workday Tools", "icons": { "128": "icon128.png" }, "description": "Search for highlighted text in Workday", "version": "1.1", "permissions": [ "contextMenus", "cookies", "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_icon": "icon128.png" }, "background": { "scripts": [ "workday_tools.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.workday.com\/*", "https:\/\/*.myworkday.com\/*", "http:\/\/*.workday.com\/*", "http:\/\/*.myworkday.com\/*" ], "js": [ "perform_start_proxy.js" ] } ], "manifest_version": 2 } |