Gist gives Summary of any text in English or Hindi. Select any block of text & click the lamp icon to get a quick Succinct Summary.
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",
"manifest_version": 2,
"name": "Gist",
"description": "Gist gives Summary of any text in English or Hindi. Select any block of text & click the lamp icon to get a quick Succinct Summary.",
"version": "1.3",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"jquery-3.1.1.min.js",
"content.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "Gist"
},
"icons": {
"128": "icons/icon.png"
},
"permissions": [
"activeTab",
"tabs",
"http://api.zippybots.com/*"
]
}