Metal Gear Solid Words Swap
Changes words in the websites you visit to be Metal Gear themed
Hvad er Metal Gear Solid Words Swap?
Metal Gear Solid Words Swap er en Chrome-udvidelse udviklet af actual_vale, og dens hovedfunktion er "Changes words in the websites you visit to be Metal Gear themed".
Udvidelsesskærmbilleder
Download Metal Gear Solid Words Swap-udvidelses-CRX-fil
Download Metal Gear Solid Words Swap-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | oakehbnanolbmgdbocehdljlbdgknblc |
Officiel URL | https://chrome.google.com/webstore/detail/metal-gear-solid-words-sw/oakehbnanolbmgdbocehdljlbdgknblc |
Beskrivelse | Changes words in the websites you visit to be Metal Gear themed |
Filstørrelse | 48.88 KB |
Antal Installationer | 35 |
Nuværende Version | 1.0.1 |
Senest Opdateret | 2017-07-23 |
Udgivelsesdato | 2017-07-23 |
Bedømmelse | 1.00/5 Samlet 2 Bedømmelser |
Udvikler | actual_vale |
Betalingsmetode | free |
Udvidelseswebsted | http://mgsshitpostgenerator.tumblr.com/ |
Understøttede Sprog | 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" ] } |