Their Medium
Find your favorite Twitter users on Medium.
什么是Their Medium?
Their Medium是由http://96problems.com开发的Chrome扩展程序,该扩展的主要功能是“Find your favorite Twitter users on Medium.”。
扩展截图
下载Their Medium扩展crx文件
下载Their Medium扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Their Medium let’s you easily see which Twitter users are on Medium just by glancing at their profile. No need to search Medium to see what the people you follow are writing. Jump straight to Medium from their profile.
扩展基本信息
名称 | |
ID | bbfdmbppdeibcpndigonmkmjhpigeoep |
官方URL | https://chrome.google.com/webstore/detail/their-medium/bbfdmbppdeibcpndigonmkmjhpigeoep |
简介 | Find your favorite Twitter users on Medium. |
文件大小 | 40.19 KB |
安装次数 | 39 |
当前版本 | 1.1.1 |
更新时间 | 2015-09-25 |
上架时间 | 2015-09-25 |
评分 | 5.00/5 共1次评分 |
开发者 | http://96problems.com |
付费类型 | free |
扩展官网 | http://96problems.com/first-draft |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Their Medium", "description": "Find your favorite Twitter users on Medium.", "version": "1.1.1", "permissions": [ "https:\/\/twitter.com\/*", "https:\/\/medium.com\/@*", "*:\/\/*\/*", "tabs" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "scripts": [ "js\/jquery-2.1.4.min.js", "js\/background.js" ], "persistent": true }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "js\/jquery-2.1.4.min.js", "js\/run.js" ], "css": [ "style.css" ] }, { "matches": [ "http:\/\/www.96problems.com\/their-medium\/" ], "js": [ "js\/installCheck.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "img\/Medium-logo-dark100.png", "img\/medium-small.png" ], "manifest_version": 2 } |