Social Muter
An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords.
什麼是Social Muter?
Social Muter是由https://socialmuter.com開發的Chrome擴展程式,該擴展的主要功能是“An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords.”。
擴展截圖
下載Social Muter擴展crx文件
下載Social Muter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Tired of weekly spoilers showing up on your Twitter Timeline? Or perhaps, you're tired of seeing a certain hashtag or topic being discussed. With Social Muter, you can filter out all of that noise from your timeline and show only content that you really want to see, when you want to see it.
擴展基本資訊
名稱 | Social Muter |
ID | pipnnaljhbijgcfmcihmmjmpnmhhljhp |
官方網址 | https://chromewebstore.google.com/detail/social-muter/pipnnaljhbijgcfmcihmmjmpnmhhljhp |
簡介 | An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords. |
檔案大小 | 107 KB |
安裝次數 | 24 |
目前版本 | 0.0.1 |
更新時間 | 2016-12-18 |
上架時間 | 2016-12-17 |
評分 | 5.00/5 共 2 次評分 |
開發者 | https://socialmuter.com |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "version": "0.0.1", "description": "__MSG_extDescription__", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "storage", "*:\/\/twitter.com\/*" ], "browser_action": { "default_icon": { "19": "icon-19.png", "38": "icon-38.png" }, "default_title": "__MSG_extName__", "default_popup": "popup.html" }, "omnibox": { "keyword": "Twitter Muter" }, "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": false } ] } |