InjectCode
Store and inject code to browser pages made super easy.
ما هو InjectCode؟
InjectCode هو إضافة Chrome تم تطويرها بواسطة https://jaak.kytt.ee، والميزة الرئيسية لها هي "Store and inject code to browser pages made super easy.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة InjectCode
قم بتنزيل ملفات الامتداد InjectCode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
For developers who have to deal with sites to which they don't have code side access to. Easily store and inject JavaScript snippets into pages, enhance usability or manipulate data in several open tabs at once. Features: * create, edit, delete, sort, name and enable/disable your scripts * syntax highlighter and autosave * scripts are stored locally and persist throughout sessions * run a specific script or all that are marked as active * change scope to run scripts on the current or on all open tabs * scripts are injected into the pages after document.ready * includes jQuery * added global function openTab(url) to open a new tab within your script (avoid recursion) * added global XhrMonitor object for working with ajax pages 1.1.0: * added global InjectCode object which is exported into the content pages (allowing to use attached methods in the Chrome console) 1.1.1: * removed unused storage permission request Source available at https://github.com/jaakkytt/InjectCode.
معلومات أساسية عن التمديد
الاسم | InjectCode |
ID | flhghpihapijancfhnicbnjifdodohpi |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/injectcode/flhghpihapijancfhnicbnjifdodohpi |
الوصف | Store and inject code to browser pages made super easy. |
حجم الملف | 215 KB |
عدد التثبيتات | 2,341 |
النسخة الحالية | 1.1.1 |
آخر تحديث | 2021-04-26 |
تاريخ النشر | 2015-04-01 |
تقييم | 4.65/5 مجموع تقييمات 26 |
المطور | https://jaak.kytt.ee |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://jaak.kytt.ee/blog/injectcode |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "InjectCode", "description": "Store and inject code to browser pages made super easy.", "version": "1.1.1", "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": "img\/inject32.png", "default_popup": "popup.html" }, "icons": { "16": "img\/inject16.png", "48": "img\/inject48.png", "128": "img\/inject128.png" }, "content_scripts": [ { "js": [ "js\/jquery-1.10.2.min.js", "js\/help_content_script.js", "js\/run_content_script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |