Timeline Unsee
Unsubscribe from anything directly from timeline in one click! Supports: Facebook
Timeline Unseeとは何ですか?
Timeline UnseeはYuriy Dorogoyによって開発されたChromeの拡張機能で、その主な機能は「Unsubscribe from anything directly from timeline in one click! Supports: Facebook」です。
拡張機能のスクリーンショット
Timeline Unsee拡張機能のCRXファイルをダウンロード
Timeline Unsee拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Chrome extension that allows us to unsubscribe directly from timeline (Currently Facebook only) PM. If you want to have this in other social media like twitter / reddit and so on, please share with me your thoughts.
Facebook require us to use painful way when don't want to see something anymore, first we need to click on 3 dots, then wait for asynchronous call to Facebook server, then try to find text for unsubscribing. Sometimes it's even hidden inside a "more options" sections. That's a lot of work to do actually, which prevents us from filtering what we read and see. I believe that people should have control over the flow, we should be able to hide media directly from the timeline, that's why I made this extension.
It's a lightweight JQuery + small script (90Kb in total) that triggers on scroll event. That's it. Extension is not tracking anything, it's opensource, you can check it here:
https://github.com/dearcj/timeline-unsubscribe 拡張機能の基本情報
| 名前 | |
| ID | kndlpfnhahnkkfgdipfppkfhabehkhda |
| 公式URL | https://chromewebstore.google.com/detail/timeline-unsee/kndlpfnhahnkkfgdipfppkfhabehkhda |
| 説明 | Unsubscribe from anything directly from timeline in one click! Supports: Facebook |
| ファイルサイズ | 59.14 KB |
| インストール数 | 18 |
| 現在のバージョン | 0.11 |
| 最終更新日 | 2019-03-23 |
| 公開日 | 2019-03-22 |
| 評価 | 5.00/5 合計 5 レビュー |
| 開発者 | Yuriy Dorogoy |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/dearcj/timeline-unsubscribe |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Timeline Unsee",
"description": "Unsubscribe from anything directly from timeline in one click! Supports: Facebook",
"version": "0.11",
"author": "Yuri Dorogoy",
"content_scripts": [
{
"matches": [
"*:\/\/www.facebook.com\/*"
],
"css": [
"button.css"
],
"js": [
"cash.min.js",
"main.js"
],
"run_at": "document_end"
}
],
"permissions": [
"*:\/\/www.facebook.com\/*",
"activeTab"
],
"web_accessible_resources": [
"hide3.png"
],
"browser_action": {
"default_icon": "tabico.png",
"default_title": "Timeline unsee"
}
} | |