Word Changer
Have fun replacing all instances of one word with another on pages you visit.
ما هو Word Changer؟
Word Changer هو إضافة Chrome تم تطويرها بواسطة skulegirlanna، والميزة الرئيسية لها هي "Have fun replacing all instances of one word with another on pages you visit.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Word Changer
قم بتنزيل ملفات الامتداد Word Changer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension lets you change a word of your choosing with a different one on websites that you're viewing. For instance, you can change "Bill Gates" to "Shrek" on his Wikipedia page! What fun! Configure the search and replace words in the extension. Then click on the extension in your browser while on a page where you want to do the word changing, and voila! Note that this is actually written by my 8 & 10 year old sons, who think this is the best way to learn how to program.
معلومات أساسية عن التمديد
الاسم | Word Changer |
ID | jjaeodeafkbbimejiboehejbdgpebjcd |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/word-changer/jjaeodeafkbbimejiboehejbdgpebjcd |
الوصف | Have fun replacing all instances of one word with another on pages you visit. |
حجم الملف | 12.41 KB |
عدد التثبيتات | 1,361 |
النسخة الحالية | 0.2 |
آخر تحديث | 2021-03-08 |
تاريخ النشر | 2020-02-19 |
تقييم | 2.43/5 مجموع تقييمات 14 |
المطور | skulegirlanna |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Changer", "description": "Have fun replacing all instances of one word with another on pages you visit.", "version": "0.2", "permissions": [ "storage", "activeTab" ], "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Run WordChanger!" }, "icons": { "16": "Icon16.png", "48": "Icon48.png", "128": "Icon128.png" } } |