Inlytics Publish
Draft and schedule LinkedIn posts.
Vad är Inlytics Publish?
Inlytics Publish är en Chrome-tillägg utvecklad av https://inlytics.io, och dess huvudfunktion är "Draft and schedule LinkedIn posts.".
Tilläggsskärmbilder
Ladda ner Inlytics Publish-förlängningens CRX-fil
Ladda ner Inlytics Publish-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Draft, Preview and Schedule Linkedin posts powered by a rich text editor. Grundläggande Information om Tillägg
| Namn | |
| ID | fckcmalnpnopeccbdcmdnejdlfigamai |
| Officiell webbadress | https://chromewebstore.google.com/detail/inlytics-publish/fckcmalnpnopeccbdcmdnejdlfigamai |
| Beskrivning | Draft and schedule LinkedIn posts. |
| Filstorlek | 361 KB |
| Antal Installationer | 112 |
| Aktuell Version | 0.0.8 |
| Senast Uppdaterad | 2023-11-13 |
| Publiceringsdatum | 2023-09-10 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | https://inlytics.io |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://inlytics.io |
| Hjälpsida URL | https://www.inlytics.io/help/overview |
| URL till Sekretesspolicy Sidan | https://www.inlytics.io/privacy |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Draft and schedule LinkedIn posts.",
"version": "0.0.8",
"manifest_version": 3,
"name": "Inlytics Publish",
"action": {
"default_icon": "icon-32.png"
},
"icons": {
"32": "icon-32.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.linkedin.com\/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"Content.css",
"tailwind.css"
],
"images": [
"icon-128.png",
"icon-32.png"
]
}
],
"permissions": [
"storage",
"https:\/\/*.linkedin.com\/*"
],
"host_permissions": [
"*:\/\/*.linkedin.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"icon-128.png",
"icon-32.png",
"tailwind.css",
"Content.css"
],
"matches": [
"*:\/\/*.linkedin.com\/*"
]
}
]
} | |