Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"author": "vlaex <t.me\/vlaex>",
"name": "X to Twitter - x logo changer",
"version": "1.0",
"manifest_version": 3,
"description": "x to bluebird this x logo changer restore old Twitter logo",
"icons": {
"128": "icons\/icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*"
],
"js": [
"contentScript.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/twitter.com\/*"
],
"js": [
"changeLogo.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_icon": {
"128": "icons\/icon.png"
},
"default_popup": "popup.html"
}
}