JS Inject
Create, save, and inject javascript code into web pages.
ما هو JS Inject؟
JS Inject هو إضافة Chrome تم تطويرها بواسطة https://bitwisecreative.com، والميزة الرئيسية لها هي "Create, save, and inject javascript code into web pages.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة JS Inject
قم بتنزيل ملفات الامتداد JS Inject بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows you to write, save, and execute javascript into web pages. You can save scripts to be run globally (on any page), on a specific domain, on a specific page, or via a "URL contains" string. It uses the CodeMirror editor, configured for javascript editing, and includes both light and dark themes. All data is stored in localStorage.
معلومات أساسية عن التمديد
الاسم | JS Inject |
ID | pbicaeiggebhcjkenahlamdjgjhbbekc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/js-inject/pbicaeiggebhcjkenahlamdjgjhbbekc |
الوصف | Create, save, and inject javascript code into web pages. |
حجم الملف | 551 KB |
عدد التثبيتات | 559 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2019-11-01 |
تاريخ النشر | 2019-11-01 |
المطور | https://bitwisecreative.com |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JS Inject", "version": "1.0.0", "description": "Create, save, and inject javascript code into web pages.", "permissions": [ "activeTab", "storage", "https:\/\/*\/*", "http:\/\/*\/*", "tabs", "unlimitedStorage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_title": "JS Inject", "default_icon": { "16": "images\/js-inject16.png", "32": "images\/js-inject32.png", "48": "images\/js-inject48.png", "128": "images\/js-inject128.png" } }, "icons": { "16": "images\/js-inject16.png", "32": "images\/js-inject32.png", "48": "images\/js-inject48.png", "128": "images\/js-inject128.png" }, "manifest_version": 2 } |