Inspect and view changes in TextFast 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
{
"manifest_version": 2,
"author": "Matheus Faustino",
"developer": {
"name": "Matheus Faustino",
"url": "https://github.com/matheusfaustino"
},
"name": "TextFast",
"version": "1.3.2",
"description": "It gives you opportunity of replacing boring words with easier ones or type memes faster ¯\\_[ツ]_/¯ (shrug).",
"permissions": [
"notifications",
"activeTab",
"storage",
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"text-replacer.js"
]
}
],
"icons": {
"48": "icon.png"
},
"browser_action": {
"default_icon": "icon.png"
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "public/config.html",
"open_in_tab": true
},
"applications": {
"gecko": {
"id": "textfaster@matheusfaustino.com",
"strict_min_version": "56.0"
}
}
}