SaveAs
SaveAs for Google Docs
ما هو SaveAs؟
SaveAs هو إضافة Chrome تم تطويرها بواسطة Jhaniv LTD.، والميزة الرئيسية لها هي "SaveAs for Google Docs".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة SaveAs
قم بتنزيل ملفات الامتداد SaveAs بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
SaveAs brings the familiar "SaveAs" functionality to your Google Docs.
معلومات أساسية عن التمديد
الاسم | SaveAs |
ID | dfagmpodnkdapdbjhjmenkeilmmefkal |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/saveas/dfagmpodnkdapdbjhjmenkeilmmefkal |
الوصف | SaveAs for Google Docs |
حجم الملف | 177 KB |
عدد التثبيتات | 42 |
النسخة الحالية | 1.3 |
آخر تحديث | 2016-06-20 |
تاريخ النشر | 2016-06-20 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Jhaniv LTD. |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SaveAs", "short_name": "SaveAs", "manifest_version": 2, "version": "1.3", "minimum_chrome_version": "29", "description": "SaveAs for Google Docs", "background": { "scripts": [ "background.js", "gdocs.js", "jq.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/document\/*", "https:\/\/docs.google.com\/spreadsheets\/*" ], "js": [ "jq.js", "main.js", "mn.js", "gdocs.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "statusbar.html" ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "tabs", "identity", "https:\/\/ssl.gstatic.com\/", "https:\/\/www.googleapis.com\/", "https:\/\/accounts.google.com\/" ], "oauth2": { "client_id": "681906034548-smp6b665oaojlnlu4ohlqpsofr05q61v.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/drive", "https:\/\/www.googleapis.com\/auth\/drive.file", "https:\/\/www.googleapis.com\/auth\/drive.metadata", "https:\/\/www.googleapis.com\/auth\/drive.scripts" ] }, "browser_action": { "name": "test", "icons": [ "icon.png" ] } } |