An English Thesaurus which gives synonyms of a word when double-clicked on a webpage.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "English Popup Thesaurus",
"version": "1.0.8",
"description": "An English Thesaurus which gives synonyms of a word which is double-click selected on a webpage.",
"icons": {
"96": "icons/Dico.png"
},
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": [
"./dependencies/jquery-3.2.1.min.js",
"background.js"
]
},
"browser_action": {
"default_icon": "icons/Dico.png",
"default_title": "English Popup Thesaurus",
"default_popup": "popup/index.html"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"./dependencies/jquery-3.2.1.min.js",
"content.js",
"./node_modules/dompurify/dist/purify.min.js"
]
}
],
"applications": {
"gecko": {
"id": "{74e2e3a5-6d4f-4766-b870-51b301cedb9c}"
}
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
}
}