Preview articles on Wikipedia and other wikis - become a wiki power-user!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "QuickWiki",
"version": "1.2.0",
"description": "Preview articles on Wikipedia and other wikis - become a wiki power-user!",
"background": {
"scripts": [
"background.js"
]
},
"page_action": {
"default_icon": "icon.png",
"default_title": "QuickWiki is enabled."
},
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": [
"*://*/wiki/*"
],
"css": [
"style.css",
"icons.css",
"scrollbar.css",
"loader.css"
],
"js": [
"jquery-1.11.2.min.js",
"script.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"icons.png"
],
"manifest_version": 2
}