Social Media Profile Saver
Allows you to save the important details from a profile page as an HTML document
Was ist Social Media Profile Saver?
Social Media Profile Saver ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to save the important details from a profile page as an HTML document".
Erweiterungsscreenshots
Social Media Profile Saver-Erweiterungs-CRX-Datei herunterladen
Laden Sie Social Media Profile Saver-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Allows you to save the important details from a profile page as an HTML document Grundlegende Informationen zur Erweiterung
| Name | |
| ID | okfbgbjbkfkndojokpjpfmhgadedmamb |
| Offizielle URL | https://chromewebstore.google.com/detail/social-media-profile-save/okfbgbjbkfkndojokpjpfmhgadedmamb |
| Beschreibung | Allows you to save the important details from a profile page as an HTML document |
| Dateigröße | 13.71 KB |
| Installationsanzahl | 93 |
| Aktuelle Version | 1.1.1 |
| Letztes Update | 2017-02-17 |
| Veröffentlichungsdatum | 2017-02-17 |
| Bewertung | 1.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Unknown |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
]
} | |