Socket
Book a DemoInstallSign in
Socket

in-article-ad-tool

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

in-article-ad-tool

Tool for inserting ads repeatedly between DOM elements

0.2.2
latest
Source
npmnpm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

inArticleAdTool

Tool for inserting an Ad repeatedly between elements. Is designed for Google's inArticleAd, but it could be used for other ads.

INSTALL

npm install in-article-ad-tool

USAGE

SCRIPT

<script src="inArticleAdToolPath/dist/inArticleAdTool.min.js"></script>
<script>
    inArticleAdTool.init(options);
</script>

ESM

    import inArticleAdTool from 'in-article-ad-tool';

    inArticleAdTool.init(options);

OPTIONS

  • containerSelector: CSS Selector of the element(s) that contains the children where the ad code will be inserted. Required.
  • elementSelector: CSS Selector of the container's children. Default: 'p'.
  • adCode: Ad Code that will be inserted. It can be an String or a function. Required.
  • firstAppearance: Number of elements needed before the first ad will be inserted. Default: 3.
  • insertEvery: Number of elements needed before the ad will be inserted again. If this value is 0 the ad will not be inserted again. Default: 3.
  • limit: Limit of ads that will be inserted. If 0 there is no limit. Default: 0.

Example

HTML

<div class="container">
    <p>
    </p>
    <p>
    </p>
    <p>
    </p>
    <p>
    </p>
    <p>
    </p>
</div>

JS

inArticleAdTool.init({
    containerSelector: '.container',
    elementSelector: 'p',
    adCode: `
    <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <ins class="adsbygoogle"
        style="display:block; text-align:center;"
        data-ad-layout="in-article"
        data-ad-format="fluid"
        data-ad-client="your-client"
        data-ad-slot="your-slot"></ins>
    <script type="text/javascript">
        (adsbygoogle = window.adsbygoogle || []).push({});
    </script>
    `,
    firstAppearance: 2,
    insertEvery: 2
});

Result

<div class="container">
    <p>
    </p>
    <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <ins class="adsbygoogle"
        style="display:block; text-align:center;"
        data-ad-layout="in-article"
        data-ad-format="fluid"
        data-ad-client="your-client"
        data-ad-slot="your-slot"></ins>
    <script type="text/javascript">
        (adsbygoogle = window.adsbygoogle || []).push({});
    </script>
    <p>
    </p>
    <p>
    </p>
    <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <ins class="adsbygoogle"
        style="display:block; text-align:center;"
        data-ad-layout="in-article"
        data-ad-format="fluid"
        data-ad-client="your-client"
        data-ad-slot="your-slot"></ins>
    <script type="text/javascript">
        (adsbygoogle = window.adsbygoogle || []).push({});
    </script>
    <p>
    </p>
    <p>
    </p>
</div>

Keywords

javascript

FAQs

Package last updated on 11 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.