Chrome proširenje koja nakon što u adresnu traku utipkate 'w {ime wikipedia članka}' otvara taj članak.
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": "Wikipedia Search",
"short_name": "Wikipedia",
"description": "Chrome proširenje koja nakon što u adresnu traku utipkate 'w {ime wikipedia članka}' otvara taj članak.",
"manifest_version": 2,
"version": "1.1",
"omnibox": {
"keyword": "w"
},
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"background": {
"persistent": false,
"scripts": [
"background.js"
]
}
}