From 3d293ecb997547ce48ab5ee3c6a83effddbbb0ae Mon Sep 17 00:00:00 2001
From: Nick White <git@njw.me.uk>
Date: Sat, 13 Nov 2010 18:54:00 +0000
Subject: Rename to simplyread to avoid name clash

---
 chromium/background.html | 4 ++--
 chromium/manifest.json   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

(limited to 'chromium')

diff --git a/chromium/background.html b/chromium/background.html
index 669ff78..229610d 100644
--- a/chromium/background.html
+++ b/chromium/background.html
@@ -1,5 +1,5 @@
-<html><head><script src="readable.js"></script><script>
+<html><head><script src="simplyread.js"></script><script>
 	chrome.browserAction.onClicked.addListener(function(tab) {
-		chrome.tabs.executeScript(null, {code:"readable();"});
+		chrome.tabs.executeScript(null, {code:"simplyread();"});
 	});
 </script></head></html>
diff --git a/chromium/manifest.json b/chromium/manifest.json
index 875c633..56c51fa 100644
--- a/chromium/manifest.json
+++ b/chromium/manifest.json
@@ -1,8 +1,8 @@
 {
-	"name": "Readable",
+	"name": "SimplyRead",
 	"version": "VERSION",
 	"background_page": "background.html",
 	"permissions": [ "tabs", "*://*/*" ],
-	"content_scripts": [{"matches": ["*://*/*"], "js": ["readable.js"]}],
+	"content_scripts": [{"matches": ["*://*/*"], "js": ["simplyread.js"]}],
 	"browser_action": { "default_icon": "icon.png" }
 }
-- 
cgit v1.2.3