Metal Gear Solid Words Swap
Changes words in the websites you visit to be Metal Gear themed
ما هو Metal Gear Solid Words Swap؟
Metal Gear Solid Words Swap هو إضافة Chrome تم تطويرها بواسطة actual_vale، والميزة الرئيسية لها هي "Changes words in the websites you visit to be Metal Gear themed".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Metal Gear Solid Words Swap
قم بتنزيل ملفات الامتداد Metal Gear Solid Words Swap بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
الاسم | |
ID | oakehbnanolbmgdbocehdljlbdgknblc |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/metal-gear-solid-words-sw/oakehbnanolbmgdbocehdljlbdgknblc |
الوصف | Changes words in the websites you visit to be Metal Gear themed |
حجم الملف | 48.88 KB |
عدد التثبيتات | 35 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2017-07-23 |
تاريخ النشر | 2017-07-23 |
تقييم | 1.00/5 مجموع تقييمات 2 |
المطور | actual_vale |
نوع الدفع | free |
موقع الإضافة | http://mgsshitpostgenerator.tumblr.com/ |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Metal Gear Solid Words Swap", "description": "Changes words in the websites you visit to be Metal Gear themed", "version": "1.0.1", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "wordsswap.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "128": "icon.png" }, "permissions": [ "activeTab", "https:\/\/raw.githubusercontent.com\/actualvale\/mgswordswap\/master\/wordsswap.json", "storage" ] } |