Fix my Twitter!
Gets back Twitter's old design by changing the useragent string
Fix my Twitter!とは何ですか?
Fix my Twitter!はZaszによって開発されたChromeの拡張機能で、その主な機能は「Gets back Twitter's old design by changing the useragent string」です。
拡張機能のスクリーンショット
Fix my Twitter!拡張機能のCRXファイルをダウンロード
Fix my Twitter!拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Almost everyone agrees Twitter's new design is ugly. *Very* ugly. This add-on gets you back the old style! It changes the UA string to IE11's and fixes the clipboard. IMPORTANT: you HAVE to clear Twitter's cookies on install, as this is not something that can be done automatically on Chrome. The source code can be found at: https://github.com/zaszthecroc/fix-my-twitter Permissions: * "https://twitter.com/*": needed for access to the webRequest API * "webRequest", "webRequestBlocking": needed to edit the requests' headers before sending * "browsingData": needed to clear Twitter's cookies
拡張機能の基本情報
名前 | Fix my Twitter! |
ID | cajlejogbjblhiamnihpfhmpaohgakhl |
公式URL | https://chromewebstore.google.com/detail/fix-my-twitter/cajlejogbjblhiamnihpfhmpaohgakhl |
説明 | Gets back Twitter's old design by changing the useragent string |
ファイルサイズ | 7.22 KB |
インストール数 | 376 |
現在のバージョン | 1.2 |
最終更新日 | 2019-07-20 |
公開日 | 2019-07-19 |
評価 | 4.26/5 合計 23 レビュー |
開発者 | Zasz |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Gets back Twitter's old design by changing the useragent string", "manifest_version": 2, "version": "1.2", "name": "Fix my Twitter!", "icons": { "48": "img\/48.png", "96": "img\/96.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "content-script.js" ] } ], "permissions": [ "https:\/\/twitter.com\/*", "webRequest", "webRequestBlocking", "browsingData" ] } |