Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Spotishush | 68 | 17 days ago | 1 | mit | JavaScript | |||||
🔇 Mutes audio ads on Spotify, Deezer, TIDAL and IDAGIO. | ||||||||||
Adzerk Management Sdk Ruby | 42 | 12 days ago | other | Ruby | ||||||
Ruby SDK for the Kevel Management API | ||||||||||
Tab Ads | 4 | 16 days ago | 3 | mit | JavaScript | |||||
A library to manage ads on Tab for a Cause | ||||||||||
Spotifymuteads | 3 | 5 years ago | JavaScript | |||||||
A Chrome Extension to mute Chrome browser when spotify web player tab plays ads | ||||||||||
Adsticker | 2 | 10 years ago | mit | JavaScript | ||||||
Earth View Min | 2 | 6 years ago | JavaScript | |||||||
Google's Earth View extension, without the ads |
A module to manage ads on Tab for a Cause
The goal of this module is to move ads-specific Tab for a Cause logic out of the app code. It is responsible for:
Some of the motivation for this module is to handle bidder partners that are not part of the Prebid ecosystem or need to run outside Prebid. (In a way, it's like a mini Prebid in which Prebid is one of the bidder partners.)
fetchAds(config)
: fetch ads for specified ad units. See config.js for config options.
AdComponent
: returns a React AdComponent
, which handles ad display.
getAvailableAdUnits
: returns an object of available ad units (leaderboard
, rectangleAdPrimary
, and rectangleAdSecondary
). See getAvailableAdUnits.js.
In addition, the module sets window.tabAds
with two properties useful for debugging:
getAllWinningBids
: a function that returns information on the winning ad for each ad slotadDataStore
: storage of each bidder partner's raw and formatted bid responses, as well as Google Ad Manager's slot eventsWe must include the following scripts immediately after the <body>
tag and before calling tab-ads
:
<!--
Google Publisher Tag
-->
<script type="text/javascript">/* eslint-disable */
var googletag = window.googletag || {}
googletag.cmd = googletag.cmd || []
googletag.cmd.push(() => {
googletag.pubads().disableInitialLoad()
googletag.pubads().setTagForChildDirectedTreatment(0)
})
var gads = document.createElement('script')
gads.async = true
gads.type = 'text/javascript'
var useSSL = document.location.protocol === 'https:'
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js'
var head = document.getElementsByTagName('head')[0]
head.appendChild(gads)
</script>
<!--
Amazon apstag
-->
<script>/* eslint-disable */
try {
!function(a9,a,p,s,t,A,g){if(a[a9])return;function q(c,r){a[a9]._Q.push([c,r])}a[a9]={init:function(){q("i",arguments)},fetchBids:function(){q("f",arguments)},setDisplayBids:function(){},targetingKeys:function(){return[]},_Q:[]};A=p.createElement(s);A.async=!0;A.src=t;g=p.getElementsByTagName(s)[0];g.parentNode.insertBefore(A,g)}("apstag",window,document,"script","//c.amazon-adsystem.com/aax2/apstag.js");
} catch(e) {
console.error(e)
}
</script>
We could consider adding a getAdCodeForHTMLBody()
function to tab-ads
, which apps could use to insert scripts into the page.
We build Prebid.js from source and keep the built Prebid code in source control. We do this because:
chrome-extension://
or moz-extension://
protocol, and this can break bidders that need to know the correct domain and referrer.To build a new version of Prebid:
yarn run prebid:build
To modify the Prebid patches:
./node_modules/prebid.js/*
prebidPatches.test.js
prebid:create-patches
to update the patches fileyarn run prebid:build
to put those patches into effect in the build Prebid fileIn the new tab page iframe context, we need to ensure that Prebid bidders send the correct page URL and referrer info. We don't have automated tests for this yet. To verify, we need to load the page in a new tab page iframe and inspect each partner's network request.
We should check this every time we upgrade Prebid.
Here's what to check for each partner, assuming the iframed page is https://example.com/newtab/
:
Partner | Request URL | What to check |
---|---|---|
Magnite | https://fastlane.rubiconproject.com/a/api/fastlane.json |
Query param rf is https://example.com/newtab/
|
Media.net | https://prebid.media.net/rtb/prebid |
Payload site.domain is example.com and site.page is https://example.com/newtab/
|
OpenX | https://tabforacause-d.openx.net/w/1.0/arj |
Query param ju is https://example.com/newtab/
|
Pulsepoint | https://bid.contextweb.com/header/ortb |
Payload site.page and site.ref are both https://example.com/newtab/
|
Sonobi | apex.go.sonobi.com/trinity.json |
Query param ref is https://example.com/newtab/
|
Sovrn | https://ap.lijit.com/rtb/bid |
Payload site.domain is example.com and site.page is https://example.com/newtab/
|
Unruly | https://targeting.unrulymedia.com/unruly_prebid |
Payload refererInfo.referer is https://example.com/newtab/
|
GDPR and CCPA: We should manually ensure that data privacy preferences are passed to ad partners. We use tab-cmp
as our consent management platform. See tab-cmp
's "Ad Partners" sections of its test checklist for what to verify in ad partner requests.
It's often helpful to test development builds of tab-ads
in other local projects.
yarn global add yalc
tab-ads
: run yarn run dev:publish
yalc add tab-ads