filmpisso-extensions

Contributing

This guide have some instructions and tips on how to create a new filmpisso extension on js extension.

Prerequisites

Before starting please have installed the recent desktop version of the filmpisso application preferably or if you want with a tablet too.

Writing your extension

  1. Open the app.
  2. Go to extension tab : 1
  3. then click + and you will see : 2
  4. Fill in the fields with your new source that you would like to create, 3 NB: only the ApiUrl field is optional then click on save
  5. you will see your new source in the extension list 4 click to open settings
  6. After click on edit code 5
  7. Finally you can now write the extension 6

Once extension is ready you can relocate your code into filmpisso-extension project in a src or multisrc package and create a Pull Request.

Source

Field Description
name Name displayed in the “Sources” tab in filmpisso.
baseUrl Base URL of the source without any trailing slashes.
apiUrl (Optional, defaults is empty) Api URL of the source with trailing slashes.
lang An ISO 639-1 compliant language code (two letters in lower case in most cases, but can also include the country/dialect part by using a simple dash character).
id Identifier of your source, automatically set in Source. It should only be manually overriden if you need to copy an existing autogenerated ID.
isManga (Optional, defaults to true) specify source type (false for anime and true for manga)
dateFormat (Optional, defaults is empty)
iconUrl The extension icon URL
version The extension version code. This must be incremented with any change to the code.
dateFormatLocale (Optional, defaults is empty)
isNsfw (Optional, defaults to false) Flag to indicate that a source contains NSFW content.

Extension call flow

a.k.a. the Browse source entry point in the app (invoked by tapping on the source name).

Latest manga

a.k.a. the Latest source entry point in the app (invoked by tapping on the “Latest” button beside the source name).

Search manga

Manga Details

Chapter pages

Episode Videos

that are used by the player.

Example sources that can help you understand how to create your source

Some functions already available and usable

http client

Return Response

- Simple request

const client = new Client();

const res = await client.get("http://example.com");

console.log(res.body);

- With headers

const client = new Client();

const res = await client.get("http://example.com",{"Referer": "http://example.com"});

console.log(res.body);

- With body

const client = new Client();

const res = await client.post("http://example.com",{"Referer": "http://example.com"},{'name':'test'});

console.log(res.body);

HTML DOM selector

Example:

const htmlString = `
<html lang="en">
<body>
<div><a href='https://github.com/kodjodevf'>author</a></div>
<div class="head">div head</div>
<div class="container">
    <table>
        <tbody>
          <tr>
              <td id="td1" class="first1">1</td>
              <td id="td2" class="first1">2</td>
              <td id="td3" class="first2">3</td>
              <td id="td4" class="first2 form">4</td>
              <td id="td5" class="second1">one</td>
              <td id="td6" class="second1">two</td>
              <td id="td7" class="second2">three</td>
              <td id="td8" class="second2">four</td>
          </tr>
        </tbody>
    </table>
</div>
<div class="end">end</div>
</body>
</html>`

const document = new Document(htmlString);
console.log(document.selectFirst("a").attr("href")); // https://github.com/kodjodevf
console.log(document.selectFirst("td").text); // 1

See dom_selector to see available methods.

String utils

Crypto utils

Help

If you need a help or have some questions, ask a community in our Discord server.