Old Layout for Facebook
Attempt to Revert Facebook to the Old Layout (pre-Sep 2020)
什么是Old Layout for Facebook?
Old Layout for Facebook是由ModernKit.one开发的Chrome扩展程序,该扩展的主要功能是“Attempt to Revert Facebook to the Old Layout (pre-Sep 2020)”。
扩展截图
下载Old Layout for Facebook扩展crx文件
下载Old Layout for Facebook扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Forced into the new Facebook layout? Don't like it?
This simple extension reverts your layout to the old version, before the September 2020 update. 扩展基本信息
| 名称 | |
| ID | abmkkackbbimmdbfjdilpnfaegaeagge |
| 官方URL | https://chromewebstore.google.com/detail/old-layout-for-facebook/abmkkackbbimmdbfjdilpnfaegaeagge |
| 简介 | Attempt to Revert Facebook to the Old Layout (pre-Sep 2020) |
| 文件大小 | 39.13 KB |
| 安装次数 | 163,543 |
| 当前版本 | 7.2 |
| 更新时间 | 2020-11-26 |
| 上架时间 | 2020-08-27 |
| 评分 | 3.92/5 共1773次评分 |
| 开发者 | ModernKit.one |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://oldlayout.com |
| 隐私政策页面URL | https://modernkit.one/privacy-policy?utm_source=chrome-listing&utm_medium=listing&utm_content=privacy-policy-link |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Attempt to Revert Facebook to the Old Layout (pre-Sep 2020)",
"manifest_version": 2,
"name": "Old Layout for Facebook",
"author": "Matt Kruse",
"version": "7.2",
"homepage_url": "https:\/\/OldLayout.com",
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"permissions": [
"*:\/\/*.facebook.com\/*",
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.facebook.com\/*"
],
"js": [
"purify.js",
"content.js"
],
"css": [
"style.css"
],
"run_at": "document_start"
}
],
"browser_action": {
"default_icon": {
"16": "icon-16.png",
"19": "icon-19.png",
"32": "icon-32.png",
"38": "icon-38.png",
"48": "icon-48.png"
},
"default_title": "Old Layout for Facebook",
"default_popup": "options.html"
}
} | |