Twitter Customizer
Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.
什麼是Twitter Customizer?
Twitter Customizer是由Alex開發的Chrome擴展程式,該擴展的主要功能是“Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.”。
擴展截圖
下載Twitter Customizer擴展crx文件
下載Twitter Customizer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A simple chrome extension which allows you to personalize your experience by uploading your own image to replace the standard X logo and favicon on the client. You can easily add a touch of personality to your browser. Simply upload your favorite asset and it will be displayed in place.
擴展基本資訊
名稱 | Twitter Customizer |
ID | gldkmephdjlaondcbjadadgmhcnjlnfj |
官方網址 | https://chromewebstore.google.com/detail/twitter-customizer/gldkmephdjlaondcbjadadgmhcnjlnfj |
簡介 | Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon. |
檔案大小 | 43 KB |
安裝次數 | 410 |
目前版本 | 1.2.0 |
更新時間 | 2023-12-09 |
上架時間 | 2023-04-12 |
評分 | 4.43/5 共 7 次評分 |
開發者 | Alex |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Customizer", "version": "1.2.0", "short_name": "TC", "description": "Use your own GIF, PNG, or JPEG image to replace Twitter's logo and favicon.", "manifest_version": 3, "permissions": [ "declarativeContent", "storage" ], "icons": { "16": "assets\/images\/no_more_doge_16.png", "32": "assets\/images\/no_more_doge_32.png", "48": "assets\/images\/no_more_doge_48.png", "128": "assets\/images\/no_more_doge_128.png" }, "background": { "service_worker": "assets\/scripts\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*", "*:\/\/*.twitter.com\/*" ], "js": [ "assets\/scripts\/contentScript.js" ], "run_at": "document_start" } ], "action": { "default_popup": "popup.html" } } |