Photos Tagged
This extension will add a button on Facebook™ to show photos that the current profile was tagged in
什么是Photos Tagged?
Photos Tagged是由Ran Mariuma开发的Chrome扩展程序,该扩展的主要功能是“This extension will add a button on Facebook™ to show photos that the current profile was tagged in”。
扩展截图
下载Photos Tagged扩展crx文件
下载Photos Tagged扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension helps you find photos in Facebook™ of people by observing their friends' photos they were tagged in. Easily and free, just install the extension and click the new button on Facebook™ profile page, under photos ('Photos Tagged').
This is an open source extension and the source code is hosted in github:
https://github.com/maryum375/Photos-tagged 扩展基本信息
| 名称 | |
| ID | ganlbkinkbapfndplimhpeajajmkbgno |
| 官方URL | https://chrome.google.com/webstore/detail/photos-tagged/ganlbkinkbapfndplimhpeajajmkbgno |
| 简介 | This extension will add a button on Facebook™ to show photos that the current profile was tagged in |
| 文件大小 | 7.08 KB |
| 安装次数 | 668 |
| 当前版本 | 1.1.2 |
| 更新时间 | 2017-10-10 |
| 上架时间 | 2017-10-10 |
| 评分 | 2.00/5 共4次评分 |
| 开发者 | Ran Mariuma |
| 付费类型 | free |
| 扩展官网 | https://github.com/maryum375/Photos-tagged |
| 帮助页面URL | https://github.com/maryum375/Photos-tagged |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Photos Tagged",
"short_name": "Photos Tagged",
"description": "This extension will add a button on Facebook\u2122 to show photos that the current profile was tagged in",
"version": "1.1.2",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"*:\/\/www.facebook.com\/*"
],
"js": [
"addphotosofbutton.js"
],
"run_at": "document_start"
}
]
} | |