Twitter News Feed Burner
Saves you from being distracted by Twitter's news feed.
Twitter News Feed Burnerとは何ですか?
Twitter News Feed BurnerはDmitri Kyle Breretonによって開発されたChromeの拡張機能で、その主な機能は「Saves you from being distracted by Twitter's news feed.」です。
拡張機能のスクリーンショット
Twitter News Feed Burner拡張機能のCRXファイルをダウンロード
Twitter News Feed Burner拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Have you ever visited Twitter to make a quick tweet, but ended up spending more time there because you got distracted by the news feed? Well you don't have to worry about that anymore. With this extension, you can hide your news feed to avoid distractions. Whenever you want to browse Twitter intentionally, you can easily turn the news feed back on.
拡張機能の基本情報
名前 | Twitter News Feed Burner |
ID | lbingojadaoinncfdhibfodloihablbi |
公式URL | https://chromewebstore.google.com/detail/twitter-news-feed-burner/lbingojadaoinncfdhibfodloihablbi |
説明 | Saves you from being distracted by Twitter's news feed. |
ファイルサイズ | 41.69 KB |
インストール数 | 109 |
現在のバージョン | 1.1 |
最終更新日 | 2019-09-05 |
公開日 | 2019-09-04 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Dmitri Kyle Brereton |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter News Feed Burner", "description": "Saves you from being distracted by Twitter's news feed.", "version": "1.1", "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "jquery.min.js", "content.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "webNavigation", "declarativeContent", "activeTab" ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" } }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "background": { "scripts": [ "background.js" ] } } |