Replaces all emoji with twemoji!
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": "Twemojify",
"version": "1.4",
"browser_specific_settings": {
"gecko": {
"id": "{88b4671d-7af9-43ef-b81f-ed0623549f20}"
}
},
"description": "Replaces all emoji with twemoji!",
"permissions": [
"storage",
"tabs"
],
"icons": {
"48": "icon.ca7ee345.svg",
"96": "icon.ca7ee345.svg"
},
"browser_action": {
"default_icon": "icon.ca7ee345.svg",
"default_title": "disable twemojify for this site"
},
"background": {
"scripts": [
"worker.fc65e037.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"twemojify.f8535387.js"
],
"css": [
"twemoji.7ed5724c.css"
]
},
{
"matches": [
"*://www.youtube.com/*"
],
"js": [
"youtube.3ba35c0b.js"
],
"css": []
},
{
"matches": [
"*://www.facebook.com/*"
],
"js": [
"facebook.859c2746.js"
],
"css": []
}
]
}