Twitter Block Chain
Blocks all users on a following/followers page.
什麼是Twitter Block Chain?
Twitter Block Chain是由devFluid開發的Chrome擴展程式,該擴展的主要功能是“Blocks all users on a following/followers page.”。
擴展截圖
下載Twitter Block Chain擴展crx文件
下載Twitter Block Chain擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Reduce the damage done by retweeting and dogpiling. Simply navigate to a user's followers/following page and activate the extension by clicking the icon next to the omnibox/address bar. The extension does not block users you are following, or re-block users that have already been blocked. You can also export and import lists of followers in a special format. If an abusive user has blocked you, you can use the export function to retrieve the list of their followers/followings after logging out, and then import the result after logging back in to Twitter. View blocking receipts and add protected users by right clicking the extension's icon and choosing "Options." Please report issues on GitHub: https://github.com/satsukitv/twitter-block-chain/issues Source available here: https://github.com/satsukitv/twitter-block-chain
擴展基本資訊
名稱 | Twitter Block Chain |
ID | dkkfampndkdnjffkleokegfnibnnjfah |
官方網址 | https://chromewebstore.google.com/detail/twitter-block-chain/dkkfampndkdnjffkleokegfnibnnjfah |
簡介 | Blocks all users on a following/followers page. |
檔案大小 | 299 KB |
安裝次數 | 68,013 |
目前版本 | 1.8.3 |
更新時間 | 2019-05-20 |
上架時間 | 2019-05-20 |
評分 | 2.73/5 共 402 次評分 |
開發者 | devFluid |
付費類型 | free |
擴展官網 | https://github.com/satsukitv/twitter-block-chain |
說明頁面URL | https://github.com/satsukitv/twitter-block-chain/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Block Chain", "description": "Blocks all users on a following\/followers page.", "version": "1.8.3", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "storage", "activeTab", "webRequest", "webRequestBlocking", "*:\/\/*.twimg.com\/", "https:\/\/api.twitter.com\/", "https:\/\/mobile.twitter.com\/", "https:\/\/twitter.com\/" ], "options_ui": { "browser_style": true, "open_in_tab": true, "page": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/mobile.twitter.com\/*", "https:\/\/twitter.com\/*" ], "css": [ "css\/content.css" ], "js": [ "js\/browser-polyfill.min.js", "js\/Queue.js", "js\/ExtensionStorage.js", "bower_components\/jquery\/dist\/jquery.min.js", "js\/blockchain.js" ] } ] } |