diff --git a/README.md b/README.md new file mode 100644 index 0000000..7cbb7d4 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Replace Maps + +Replace Google Maps iframes with OSM diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..98dbce7 --- /dev/null +++ b/manifest.json @@ -0,0 +1,21 @@ +{ + "description": "Replaces Google Maps iframes with OSM", + "manifest_version": 2, + "name": "Replace Maps", + "version": "1.0", + "homepage_url": "https://github.com/nobkd/replace-maps", + "icons": { + "48": "icons/48.png" + }, + "content_scripts": [ + { + "matches": [ + "http://*", + "https://*" + ], + "js": [ + "replace.js" + ] + } + ] +} \ No newline at end of file diff --git a/replace.js b/replace.js new file mode 100644 index 0000000..e69de29