Inspect and view changes in Wordify source codes across current and past versions
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": 3,
"name": "Wordify",
"version": "1.0",
"description": "Generate word cloud based on the current web page.",
"permissions": [
"activeTab",
"scripting"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "assets/Icon-16.png",
"48": "assets/Icon-48.png",
"128": "assets/Icon-128.png"
}
},
"icons": {
"16": "assets/Icon-16.png",
"48": "assets/Icon-48.png",
"128": "assets/Icon-128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"d3.min.js",
"d3.layout.cloud.min.js"
],
"matches": [
"<all_urls>"
]
}
]
}