Run In Playground
Run any JavaScript code on a page in a code playground of your choice
ما هو Run In Playground؟
Run In Playground هو إضافة Chrome تم تطويرها بواسطة https://fraserhamilton.dev، والميزة الرئيسية لها هي "Run any JavaScript code on a page in a code playground of your choice".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Run In Playground
قم بتنزيل ملفات الامتداد Run In Playground بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Often when reading blog posts It can be useful to experiment with the code alongside the author, code playgrounds are great for this but the copy and pasting can quickly become tedious. This extension attempts to address that by adding a "Open In Playground" option to the context menu to open the code in the playground of your choice. You can also click on the extension icon to launch an empty code playground. Currently only CodePen and JSFiddle are supported with more playgrounds coming soon.
معلومات أساسية عن التمديد
الاسم | Run In Playground |
ID | gaakbjifoeokcmhbdpgaflahiphfelfd |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/run-in-playground/gaakbjifoeokcmhbdpgaflahiphfelfd |
الوصف | Run any JavaScript code on a page in a code playground of your choice |
حجم الملف | 64.48 KB |
عدد التثبيتات | 71 |
النسخة الحالية | 1.1 |
آخر تحديث | 2020-08-22 |
تاريخ النشر | 2020-08-17 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | https://fraserhamilton.dev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Run In Playground", "version": "1.1", "description": "Run any JavaScript code on a page in a code playground of your choice", "manifest_version": 2, "permissions": [ "activeTab", "https:\/\/codepen.io\/pen\/define", "https:\/\/jsfiddle.net\/api\/post\/library\/pure\/", "contextMenus", "storage" ], "background": { "persistent": true, "page": "background.html" }, "browser_action": { "name": "Run In Playground" }, "options_page": "options.html", "icons": { "16": "icon16.png", "32": "icon32.png", "128": "icon128.png" } } |