Enable Spreadsheet Copy
Allow selecting, copying, pasting and right clicking in some restricted sheets.
ما هو Enable Spreadsheet Copy؟
Enable Spreadsheet Copy هو إضافة Chrome تم تطويرها بواسطة Justin Shenk، والميزة الرئيسية لها هي "Allow selecting, copying, pasting and right clicking in some restricted sheets.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Enable Spreadsheet Copy
قم بتنزيل ملفات الامتداد Enable Spreadsheet Copy بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Sheet Copier opens a google sheet in a new tab in preview mode for previewing a sheet. 1. Click 'Open Copyable Sheet' 2. Select all and copy (Cmd/Ctrl+A, Cmd/Ctrl+C) 3. Open new Google Sheet 4. Paste into new sheet (Cmd/Ctrl+V)
معلومات أساسية عن التمديد
الاسم | Enable Spreadsheet Copy |
ID | kpejegeplfmfcdaelkmmjlnijkejigpg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/enable-spreadsheet-copy/kpejegeplfmfcdaelkmmjlnijkejigpg |
الوصف | Allow selecting, copying, pasting and right clicking in some restricted sheets. |
حجم الملف | 98.19 KB |
عدد التثبيتات | 20,000 |
النسخة الحالية | 0.3 |
آخر تحديث | 2020-05-16 |
تاريخ النشر | 2020-05-16 |
تقييم | 3.90/5 مجموع تقييمات 20 |
المطور | Justin Shenk |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/justinshenk/sheet-copier |
عنوان صفحة المساعدة | https://github.com/justinshenk/sheet-copier/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Enable Spreadsheet Copy", "description": "Allow selecting, copying, pasting and right clicking in some restricted sheets.", "version": "0.3", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_title": "Enable copy", "default_icon": "images\/icon128.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ], "content_security_policy": "script-src 'self'; object-src 'self'" } |