Social Media Profile Saver
Allows you to save the important details from a profile page as an HTML document
什麼是Social Media Profile Saver?
Social Media Profile Saver是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Allows you to save the important details from a profile page as an HTML document”。
擴展截圖
下載Social Media Profile Saver擴展crx文件
下載Social Media Profile Saver擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Allows you to save the important details from a profile page as an HTML document 擴展基本資訊
| 名稱 | |
| ID | okfbgbjbkfkndojokpjpfmhgadedmamb |
| 官方網址 | https://chromewebstore.google.com/detail/social-media-profile-save/okfbgbjbkfkndojokpjpfmhgadedmamb |
| 簡介 | Allows you to save the important details from a profile page as an HTML document |
| 檔案大小 | 13.71 KB |
| 安裝次數 | 93 |
| 目前版本 | 1.1.1 |
| 更新時間 | 2017-02-17 |
| 上架時間 | 2017-02-17 |
| 評分 | 1.00/5 共 2 次評分 |
| 開發者 | Unknown |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Social Media Profile Saver",
"version": "1.1.1",
"manifest_version": 2,
"icons": {
"128": "save-128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*.linkedin.com\/*",
"https:\/\/*.linkedin.com\/*"
],
"js": [
"profile_content.js",
"profile_content_old.js"
],
"run_at": "document_start"
},
{
"matches": [
"http:\/\/*.linkedin.com\/recruiter\/profile\/*",
"https:\/\/*.linkedin.com\/recruiter\/profile\/*"
],
"js": [
"recruiter_profile_content.js"
],
"run_at": "document_start"
},
{
"matches": [
"http:\/\/*.linkedin.com\/*",
"https:\/\/*.linkedin.com\/*"
],
"js": [
"push_state.js"
],
"run_at": "document_start"
}
]
} | |